diff --git a/.DS_Store b/.DS_Store index 3f37e85..a0e76cc 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/2022/.DS_Store b/2022/.DS_Store new file mode 100644 index 0000000..8294d33 Binary files /dev/null and b/2022/.DS_Store differ diff --git a/2022/tr/.DS_Store b/2022/tr/.DS_Store new file mode 100644 index 0000000..e65cca7 Binary files /dev/null and b/2022/tr/.DS_Store differ diff --git a/2022/tr/Days/CICD/Jenkins/Pipeline/Dockerfile b/2022/tr/Days/CICD/Jenkins/Pipeline/Dockerfile new file mode 100644 index 0000000..cea34cc --- /dev/null +++ b/2022/tr/Days/CICD/Jenkins/Pipeline/Dockerfile @@ -0,0 +1,11 @@ +FROM busybox:latest +ENV PORT=8000 + +ADD index.html /www/index.html + +# EXPOSE $PORT + +HEALTHCHECK .mdnc -z localhost $PORT + +# Create a basic webserver and run it until the container is stopped +.mdecho "httpd started" && trap "exit 0;" TERM INT; httpd -v -p $PORT -h /www -f & wait \ No newline at end of file diff --git a/2022/tr/Days/CICD/Jenkins/Pipeline/Jenkinsfile b/2022/tr/Days/CICD/Jenkins/Pipeline/Jenkinsfile new file mode 100644 index 0000000..100961d --- /dev/null +++ b/2022/tr/Days/CICD/Jenkins/Pipeline/Jenkinsfile @@ -0,0 +1,53 @@ +podTemplate(yaml: ''' + apiVersion: v1 + kind: Pod + spec: + containers: + - name: maven + image: maven:3.8.1-jdk-8 + command: + - sleep + args: + - 99d + - name: kaniko + image: gcr.io/kaniko-project/executor:debug + command: + - sleep + args: + - 9999999 + volumeMounts: + - name: kaniko-secret + mountPath: /kaniko/.docker + restartPolicy: Never + volumes: + - name: kaniko-secret + secret: + secretName: dockercred + items: + - key: .dockerconfigjson + path: config.json +''') { + node(POD_LABEL) { + stage('Clone Repository') { + git url: 'https://github.com/MichaelCade/Jenkins-HelloWorld.git', branch: 'main' + container('maven') { + stage('Build Image') { + sh ''' + echo "Tests passed" + ''' + } + } + } + + stage('Test Image') { + container('kaniko') { + stage('Build Hello World App') { + sh ''' + /kaniko/executor --context `pwd` --destination michaelcade1/helloworld:1.0 + ''' + } + } + } + + } +} \ No newline at end of file diff --git a/2022/tr/Days/CICD/Jenkins/Pipeline/index.html b/2022/tr/Days/CICD/Jenkins/Pipeline/index.html new file mode 100644 index 0000000..56ecc69 --- /dev/null +++ b/2022/tr/Days/CICD/Jenkins/Pipeline/index.html @@ -0,0 +1,3 @@ +
+    Hello World!
+    
\ No newline at end of file diff --git a/2022/tr/Days/CICD/Jenkins/jenkins-namespace.yml b/2022/tr/Days/CICD/Jenkins/jenkins-namespace.yml new file mode 100644 index 0000000..69a4099 --- /dev/null +++ b/2022/tr/Days/CICD/Jenkins/jenkins-namespace.yml @@ -0,0 +1,5 @@ +--- +apiVersion: v1 +kind: Namespace +metadata: + name: jenkins diff --git a/2022/tr/Days/CICD/Jenkins/jenkins-sa.yml b/2022/tr/Days/CICD/Jenkins/jenkins-sa.yml new file mode 100644 index 0000000..e161dc3 --- /dev/null +++ b/2022/tr/Days/CICD/Jenkins/jenkins-sa.yml @@ -0,0 +1,76 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: jenkins + namespace: jenkins +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + annotations: + rbac.authorization.kubernetes.io/autoupdate: "true" + labels: + kubernetes.io/bootstrapping: rbac-defaults + name: jenkins +rules: +- apiGroups: + - '*' + resources: + - statefulsets + - services + - replicationcontrollers + - replicasets + - podtemplates + - podsecuritypolicies + - pods + - pods/log + - pods/exec + - podpreset + - poddisruptionbudget + - persistentvolumes + - persistentvolumeclaims + - jobs + - endpoints + - deployments + - deployments/scale + - daemonsets + - cronjobs + - configmaps + - namespaces + - events + - secrets + verbs: + - create + - get + - watch + - delete + - list + - patch + - update +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch + - update +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + annotations: + rbac.authorization.kubernetes.io/autoupdate: "true" + labels: + kubernetes.io/bootstrapping: rbac-defaults + name: jenkins +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: jenkins +subjects: +- apiGroup: rbac.authorization.k8s.io + kind: Group + name: system:serviceaccounts:jenkins diff --git a/2022/tr/Days/CICD/Jenkins/jenkins-values.yml b/2022/tr/Days/CICD/Jenkins/jenkins-values.yml new file mode 100644 index 0000000..0c5fff7 --- /dev/null +++ b/2022/tr/Days/CICD/Jenkins/jenkins-values.yml @@ -0,0 +1,893 @@ +# Default values for jenkins. +# This is a YAML-formatted file. +# Declare name/value pairs to be passed into your templates. +# name: value + +## Overrides for generated resource names +# See templates/_helpers.tpl +# nameOverride: +# fullnameOverride: +# namespaceOverride: + +# For FQDN resolving of the controller service. Change this value to match your existing configuration. +# ref: https://github.com/kubernetes/dns/blob/master/docs/specification.md +clusterZone: "cluster.local" + +renderHelmLabels: true + +controller: + # Used for label app.kubernetes.io/component + componentName: "jenkins-controller" + image: "jenkins/jenkins" + # tag: "2.332.1-jdk11" + tagLabel: jdk11 + imagePullPolicy: "Always" + imagePullSecretName: + # Optionally configure lifetime for controller-container + lifecycle: + # postStart: + # exec: + # command: + # - "uname" + # - "-a" + disableRememberMe: false + numExecutors: 0 + # configures the executor mode of the Jenkins node. Possible values are: NORMAL or EXCLUSIVE + executorMode: "NORMAL" + # This is ignored if enableRawHtmlMarkupFormatter is true + markupFormatter: plainText + customJenkinsLabels: [] + # The default configuration uses this secret to configure an admin user + # If you don't need that user or use a different security realm then you can disable it + adminSecret: true + + hostNetworking: false + # When enabling LDAP or another non-Jenkins identity source, the built-in admin account will no longer exist. + # If you disable the non-Jenkins identity store and instead use the Jenkins internal one, + # you should revert controller.adminUser to your preferred admin user: + adminUser: "admin" + # adminPassword: + admin: + existingSecret: "" + userKey: jenkins-admin-user + passwordKey: jenkins-admin-password + # This values should not be changed unless you use your custom image of jenkins or any devired from. If you want to use + # Cloudbees Jenkins Distribution docker, you should set jenkinsHome: "/var/cloudbees-jenkins-distribution" + jenkinsHome: "/var/jenkins_home" + # This values should not be changed unless you use your custom image of jenkins or any devired from. If you want to use + # Cloudbees Jenkins Distribution docker, you should set jenkinsRef: "/usr/share/cloudbees-jenkins-distribution/ref" + jenkinsRef: "/usr/share/jenkins/ref" + # Path to the jenkins war file which is used by jenkins-plugin-cli. + jenkinsWar: "/usr/share/jenkins/jenkins.war" + # Overrides the default arguments passed to the war + # overrideArgs: + # - --httpPort=8080 + resources: + requests: + cpu: "50m" + memory: "256Mi" + limits: + cpu: "2000m" + memory: "4096Mi" + # Overrides the init container default values + # initContainerResources: + # requests: + # cpu: "50m" + # memory: "256Mi" + # limits: + # cpu: "2000m" + # memory: "4096Mi" + # Environment variables that get added to the init container (useful for e.g. http_proxy) + # initContainerEnv: + # - name: http_proxy + # value: "http://192.168.64.1:3128" + # containerEnv: + # - name: http_proxy + # value: "http://192.168.64.1:3128" + # Set min/max heap here if needed with: + # javaOpts: "-Xms512m -Xmx512m" + # jenkinsOpts: "" + # If you are using the ingress definitions provided by this chart via the `controller.ingress` block the configured hostname will be the ingress hostname starting with `https://` or `http://` depending on the `tls` configuration. + # The Protocol can be overwritten by specifying `controller.jenkinsUrlProtocol`. + # jenkinsUrlProtocol: "https" + # If you are not using the provided ingress you can specify `controller.jenkinsUrl` to change the url definition. + # jenkinsUrl: "" + # If you set this prefix and use ingress controller then you might want to set the ingress path below + # jenkinsUriPrefix: "/jenkins" + # Enable pod security context (must be `true` if podSecurityContextOverride, runAsUser or fsGroup are set) + usePodSecurityContext: true + # Note that `runAsUser`, `fsGroup`, and `securityContextCapabilities` are + # being deprecated and replaced by `podSecurityContextOverride`. + # Set runAsUser to 1000 to let Jenkins run as non-root user 'jenkins' which exists in 'jenkins/jenkins' docker image. + # When setting runAsUser to a different value than 0 also set fsGroup to the same value: + runAsUser: 1000 + fsGroup: 1000 + # If you have PodSecurityPolicies that require dropping of capabilities as suggested by CIS K8s benchmark, put them here + securityContextCapabilities: {} + # drop: + # - NET_RAW + # Completely overwrites the contents of the `securityContext`, ignoring the + # values provided for the deprecated fields: `runAsUser`, `fsGroup`, and + # `securityContextCapabilities`. In the case of mounting an ext4 filesystem, + # it might be desirable to use `supplementalGroups` instead of `fsGroup` in + # the `securityContext` block: https://github.com/kubernetes/kubernetes/issues/67014#issuecomment-589915496 + # podSecurityContextOverride: + # runAsUser: 1000 + # runAsNonRoot: true + # supplementalGroups: [1000] + # # capabilities: {} + # Container securityContext + containerSecurityContext: + runAsUser: 1000 + runAsGroup: 1000 + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + servicePort: 8080 + targetPort: 8080 + # For minikube, set this to NodePort, elsewhere use LoadBalancer + # Use ClusterIP if your setup includes ingress controller + serviceType: ClusterIP + # Use Local to preserve the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, + # but risks potentially imbalanced traffic spreading. + serviceExternalTrafficPolicy: + # Jenkins controller service annotations + serviceAnnotations: {} + # Jenkins controller custom labels + statefulSetLabels: {} + # foo: bar + # bar: foo + # Jenkins controller service labels + serviceLabels: {} + # service.beta.kubernetes.io/aws-load-balancer-backend-protocol: https + # Put labels on Jenkins controller pod + podLabels: {} + # Used to create Ingress record (should used with ServiceType: ClusterIP) + # nodePort: + # -Dcom.sun.management.jmxremote.port=4000 + # -Dcom.sun.management.jmxremote.authenticate=false + # -Dcom.sun.management.jmxremote.ssl=false + # jmxPort: 4000 + # Optionally configure other ports to expose in the controller container + extraPorts: [] + # - name: BuildInfoProxy + # port: 9000 + + # List of plugins to be install during Jenkins controller start + installPlugins: + - kubernetes:1.31.3 + - workflow-aggregator:2.6 + - git:4.10.2 + - configuration-as-code:1.55.1 + + # Set to false to download the minimum required version of all dependencies. + installLatestPlugins: true + + # Set to true to download latest dependencies of any plugin that is requested to have the latest version. + installLatestSpecifiedPlugins: false + + # List of plugins to install in addition to those listed in controller.installPlugins + additionalPlugins: [] + + # Enable to initialize the Jenkins controller only once on initial installation. + # Without this, whenever the controller gets restarted (Evicted, etc.) it will fetch plugin updates which has the potential to cause breakage. + # Note that for this to work, `persistence.enabled` needs to be set to `true` + initializeOnce: false + + # Enable to always override the installed plugins with the values of 'controller.installPlugins' on upgrade or redeployment. + # overwritePlugins: true + + # Configures if plugins bundled with `controller.image` should be overwritten with the values of 'controller.installPlugins' on upgrade or redeployment. + overwritePluginsFromImage: true + + # Enable HTML parsing using OWASP Markup Formatter Plugin (antisamy-markup-formatter), useful with ghprb plugin. + # The plugin is not installed by default, please update controller.installPlugins. + enableRawHtmlMarkupFormatter: false + # Used to approve a list of groovy functions in pipelines used the script-security plugin. Can be viewed under /scriptApproval + scriptApproval: [] + # - "method groovy.json.JsonSlurperClassic parseText java.lang.String" + # - "new groovy.json.JsonSlurperClassic" + # List of groovy init scripts to be executed during Jenkins controller start + initScripts: [] + # - | + # print 'adding global pipeline libraries, register properties, bootstrap jobs...' + + # 'name' is a name of an existing secret in same namespace as jenkins, + # 'keyName' is the name of one of the keys inside current secret. + # the 'name' and 'keyName' are concatenated with a '-' in between, so for example: + # an existing secret "secret-credentials" and a key inside it named "github-password" should be used in Jcasc as ${secret-credentials-github-password} + # 'name' and 'keyName' must be lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', + # and must start and end with an alphanumeric character (e.g. 'my-name', or '123-abc') + additionalExistingSecrets: [] + # - name: secret-name-1 + # keyName: username + # - name: secret-name-1 + # keyName: password + + additionalSecrets: [] + # - name: nameOfSecret + # value: secretText + + # Generate SecretClaim resources in order to create Kubernetes secrets from HashiCorp Vault using kube-vault-controller. + # 'name' is name of the secret that will be created in Kubernetes. The Jenkins fullname is prepended to this value. + # 'path' is the fully qualified path to the secret in Vault + # 'type' is an optional Kubernetes secret type. Defaults to 'Opaque' + # 'renew' is an optional secret renewal time in seconds + secretClaims: [] + # - name: secretName # required + # path: testPath # required + # type: kubernetes.io/tls # optional + # renew: 60 # optional + + # Name of default cloud configuration. + cloudName: "kubernetes" + + # Below is the implementation of Jenkins Configuration as Code. Add a key under configScripts for each configuration area, + # where each corresponds to a plugin or section of the UI. Each key (prior to | character) is just a label, and can be any value. + # Keys are only used to give the section a meaningful name. The only restriction is they may only contain RFC 1123 \ DNS label + # characters: lowercase letters, numbers, and hyphens. The keys become the name of a configuration yaml file on the controller in + # /var/jenkins_home/casc_configs (by default) and will be processed by the Configuration as Code Plugin. The lines after each | + # become the content of the configuration yaml file. The first line after this is a JCasC root element, eg jenkins, credentials, + # etc. Best reference is https:///configuration-as-code/reference. The example below creates a welcome message: + JCasC: + defaultConfig: true + configScripts: {} + # welcome-message: | + # jenkins: + # systemMessage: Welcome to our CI\CD server. This Jenkins is configured and managed 'as code'. + # Ignored if securityRealm is defined in controller.JCasC.configScripts and + # ignored if controller.enableXmlConfig=true as controller.securityRealm takes precedence + securityRealm: |- + local: + allowsSignup: false + enableCaptcha: false + users: + - id: "${chart-admin-username}" + name: "Jenkins Admin" + password: "${chart-admin-password}" + # Ignored if authorizationStrategy is defined in controller.JCasC.configScripts + authorizationStrategy: |- + loggedInUsersCanDoAnything: + allowAnonymousRead: false + # Optionally specify additional init-containers + customInitContainers: [] + # - name: custom-init + # image: "alpine:3.7" + # imagePullPolicy: Always + # command: [ "uname", "-a" ] + + sidecars: + configAutoReload: + # If enabled: true, Jenkins Configuration as Code will be reloaded on-the-fly without a reboot. If false or not-specified, + # jcasc changes will cause a reboot and will only be applied at the subsequent start-up. Auto-reload uses the + # http:///reload-configuration-as-code endpoint to reapply config when changes to the configScripts are detected. + enabled: true + image: kiwigrid/k8s-sidecar:1.15.0 + imagePullPolicy: IfNotPresent + resources: {} + # limits: + # cpu: 100m + # memory: 100Mi + # requests: + # cpu: 50m + # memory: 50Mi + # How many connection-related errors to retry on + reqRetryConnect: 10 + # env: + # - name: REQ_TIMEOUT + # value: "30" + # SSH port value can be set to any unused TCP port. The default, 1044, is a non-standard SSH port that has been chosen at random. + # Is only used to reload jcasc config from the sidecar container running in the Jenkins controller pod. + # This TCP port will not be open in the pod (unless you specifically configure this), so Jenkins will not be + # accessible via SSH from outside of the pod. Note if you use non-root pod privileges (runAsUser & fsGroup), + # this must be > 1024: + sshTcpPort: 1044 + # folder in the pod that should hold the collected dashboards: + folder: "/var/jenkins_home/casc_configs" + # If specified, the sidecar will search for JCasC config-maps inside this namespace. + # Otherwise the namespace in which the sidecar is running will be used. + # It's also possible to specify ALL to search in all namespaces: + # searchNamespace: + containerSecurityContext: + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + + # Allows you to inject additional/other sidecars + other: [] + ## The example below runs the client for https://smee.io as sidecar container next to Jenkins, + ## that allows to trigger build behind a secure firewall. + ## https://jenkins.io/blog/2019/01/07/webhook-firewalls/#triggering-builds-with-webhooks-behind-a-secure-firewall + ## + ## Note: To use it you should go to https://smee.io/new and update the url to the generete one. + # - name: smee + # image: docker.io/twalter/smee-client:1.0.2 + # args: ["--port", "{{ .Values.controller.servicePort }}", "--path", "/github-webhook/", "--url", "https://smee.io/new"] + # resources: + # limits: + # cpu: 50m + # memory: 128Mi + # requests: + # cpu: 10m + # memory: 32Mi + # Name of the Kubernetes scheduler to use + schedulerName: "" + # Node labels and tolerations for pod assignment + # ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector + # ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature + nodeSelector: {} + + terminationGracePeriodSeconds: + + terminationMessagePath: + terminationMessagePolicy: + + tolerations: [] + + affinity: {} + # Leverage a priorityClass to ensure your pods survive resource shortages + # ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + priorityClassName: + + podAnnotations: {} + # Add StatefulSet annotations + statefulSetAnnotations: {} + + # StatefulSet updateStrategy + # ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + updateStrategy: {} + + ingress: + enabled: false + # Override for the default paths that map requests to the backend + paths: [] + # - backend: + # serviceName: ssl-redirect + # servicePort: use-annotation + # - backend: + # serviceName: >- + # {{ template "jenkins.fullname" . }} + # # Don't use string here, use only integer value! + # servicePort: 8080 + # For Kubernetes v1.14+, use 'networking.k8s.io/v1beta1' + # For Kubernetes v1.19+, use 'networking.k8s.io/v1' + apiVersion: "extensions/v1beta1" + labels: {} + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + # For Kubernetes >= 1.18 you should specify the ingress-controller via the field ingressClassName + # See https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress + # ingressClassName: nginx + # Set this path to jenkinsUriPrefix above or use annotations to rewrite path + # path: "/jenkins" + # configures the hostname e.g. jenkins.example.com + hostName: + tls: + # - secretName: jenkins.cluster.local + # hosts: + # - jenkins.cluster.local + + # often you want to have your controller all locked down and private + # but you still want to get webhooks from your SCM + # A secondary ingress will let you expose different urls + # with a differnt configuration + secondaryingress: + enabled: false + # paths you want forwarded to the backend + # ex /github-webhook + paths: [] + # For Kubernetes v1.14+, use 'networking.k8s.io/v1beta1' + # For Kubernetes v1.19+, use 'networking.k8s.io/v1' + apiVersion: "extensions/v1beta1" + labels: {} + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + # For Kubernetes >= 1.18 you should specify the ingress-controller via the field ingressClassName + # See https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress + # ingressClassName: nginx + # configures the hostname e.g. jenkins-external.example.com + hostName: + tls: + # - secretName: jenkins-external.example.com + # hosts: + # - jenkins-external.example.com + + # If you're running on GKE and need to configure a backendconfig + # to finish ingress setup, use the following values. + # Docs: https://cloud.google.com/kubernetes-engine/docs/concepts/backendconfig + backendconfig: + enabled: false + apiVersion: "extensions/v1beta1" + name: + labels: {} + annotations: {} + spec: {} + + # Openshift route + route: + enabled: false + labels: {} + annotations: {} + # path: "/jenkins" + + # controller.hostAliases allows for adding entries to Pod /etc/hosts: + # https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + hostAliases: [] + # - ip: 192.168.50.50 + # hostnames: + # - something.local + # - ip: 10.0.50.50 + # hostnames: + # - other.local + + # Expose Prometheus metrics + prometheus: + # If enabled, add the prometheus plugin to the list of plugins to install + # https://plugins.jenkins.io/prometheus + enabled: false + # Additional labels to add to the ServiceMonitor object + serviceMonitorAdditionalLabels: {} + # Set a custom namespace where to deploy ServiceMonitor resource + # serviceMonitorNamespace: monitoring + scrapeInterval: 60s + # This is the default endpoint used by the prometheus plugin + scrapeEndpoint: /prometheus + # Additional labels to add to the PrometheusRule object + alertingRulesAdditionalLabels: {} + # An array of prometheus alerting rules + # See here: https://prometheus.io/docs/prometheus/latest/configuration/alerting_rules/ + # The `groups` root object is added by default, simply add the rule entries + alertingrules: [] + # Set a custom namespace where to deploy PrometheusRule resource + prometheusRuleNamespace: "" + + # Can be used to disable rendering controller test resources when using helm template + testEnabled: true + + httpsKeyStore: + jenkinsHttpsJksSecretName: '' + enable: false + httpPort: 8081 + path: "/var/jenkins_keystore" + fileName: "keystore.jks" + password: "password" + # Convert keystore.jks files content to base64 ( cat keystore.jks | base64 ) and put the output here + jenkinsKeyStoreBase64Encoded: | + /u3+7QAAAAIAAAABAAAAAQANamVua2luc2NpLmNvbQAAAW2r/b1ZAAAFATCCBP0wDgYKKwYBBAEq + AhEBAQUABIIE6QbCqasvoHS0pSwYqSvdydMCB9t+VNfwhFIiiuAelJfO5sSe2SebJbtwHgLcRz1Z + gMtWgOSFdl3bWSzA7vrW2LED52h+jXLYSWvZzuDuh8hYO85m10ikF6QR+dTi4jra0whIFDvq3pxe + TnESxEsN+DvbZM3jA3qsjQJSeISNpDjO099dqQvHpnCn18lyk7J4TWJ8sOQQb1EM2zDAfAOSqA/x + QuPEFl74DlY+5DIk6EBvpmWhaMSvXzWZACGA0sYqa157dq7O0AqmuLG/EI5EkHETO4CrtBW+yLcy + 2dUCXOMA+j+NjM1BjrQkYE5vtSfNO6lFZcISyKo5pTFlcA7ut0Fx2nZ8GhHTn32CpeWwNcZBn1gR + pZVt6DxVVkhTAkMLhR4rL2wGIi/1WRs23ZOLGKtyDNvDHnQyDiQEoJGy9nAthA8aNHa3cfdF10vB + Drb19vtpFHmpvKEEhpk2EBRF4fTi644Fuhu2Ied6118AlaPvEea+n6G4vBz+8RWuVCmZjLU+7h8l + Hy3/WdUPoIL5eW7Kz+hS+sRTFzfu9C48dMkQH3a6f3wSY+mufizNF9U298r98TnYy+PfDJK0bstG + Ph6yPWx8DGXKQBwrhWJWXI6JwZDeC5Ny+l8p1SypTmAjpIaSW3ge+KgcL6Wtt1R5hUV1ajVwVSUi + HF/FachKqPqyLJFZTGjNrxnmNYpt8P1d5JTvJfmfr55Su/P9n7kcyWp7zMcb2Q5nlXt4tWogOHLI + OzEWKCacbFfVHE+PpdrcvCVZMDzFogIq5EqGTOZe2poPpBVE+1y9mf5+TXBegy5HToLWvmfmJNTO + NCDuBjgLs2tdw2yMPm4YEr57PnMX5gGTC3f2ZihXCIJDCRCdQ9sVBOjIQbOCzxFXkVITo0BAZhCi + Yz61wt3Ud8e//zhXWCkCsSV+IZCxxPzhEFd+RFVjW0Nm9hsb2FgAhkXCjsGROgoleYgaZJWvQaAg + UyBzMmKDPKTllBHyE3Gy1ehBNGPgEBChf17/9M+j8pcm1OmlM434ctWQ4qW7RU56//yq1soFY0Te + fu2ei03a6m68fYuW6s7XEEK58QisJWRAvEbpwu/eyqfs7PsQ+zSgJHyk2rO95IxdMtEESb2GRuoi + Bs+AHNdYFTAi+GBWw9dvEgqQ0Mpv0//6bBE/Fb4d7b7f56uUNnnE7mFnjGmGQN+MvC62pfwfvJTT + EkT1iZ9kjM9FprTFWXT4UmO3XTvesGeE50sV9YPm71X4DCQwc4KE8vyuwj0s6oMNAUACW2ClU9QQ + y0tRpaF1tzs4N42Q5zl0TzWxbCCjAtC3u6xf+c8MCGrr7DzNhm42LOQiHTa4MwX4x96q7235oiAU + iQqSI/hyF5yLpWw4etyUvsx2/0/0wkuTU1FozbLoCWJEWcPS7QadMrRRISxHf0YobIeQyz34regl + t1qSQ3dCU9D6AHLgX6kqllx4X0fnFq7LtfN7fA2itW26v+kAT2QFZ3qZhINGfofCja/pITC1uNAZ + gsJaTMcQ600krj/ynoxnjT+n1gmeqThac6/Mi3YlVeRtaxI2InL82ZuD+w/dfY9OpPssQjy3xiQa + jPuaMWXRxz/sS9syOoGVH7XBwKrWpQcpchozWJt40QV5DslJkclcr8aC2AGlzuJMTdEgz1eqV0+H + bAXG9HRHN/0eJTn1/QAAAAEABVguNTA5AAADjzCCA4swggJzAhRGqVxH4HTLYPGO4rzHcCPeGDKn + xTANBgkqhkiG9w0BAQsFADCBgTELMAkGA1UEBhMCY2ExEDAOBgNVBAgMB29udGFyaW8xEDAOBgNV + BAcMB3Rvcm9udG8xFDASBgNVBAoMC2plbmtpbnN0ZXN0MRkwFwYDVQQDDBBqZW5raW5zdGVzdC5p + bmZvMR0wGwYJKoZIhvcNAQkBFg50ZXN0QHRlc3QuaW5mbzAeFw0xOTEwMDgxNTI5NTVaFw0xOTEx + MDcxNTI5NTVaMIGBMQswCQYDVQQGEwJjYTEQMA4GA1UECAwHb250YXJpbzEQMA4GA1UEBwwHdG9y + b250bzEUMBIGA1UECgwLamVua2luc3Rlc3QxGTAXBgNVBAMMEGplbmtpbnN0ZXN0LmluZm8xHTAb + BgkqhkiG9w0BCQEWDnRlc3RAdGVzdC5pbmZvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC + AQEA02q352JTHGvROMBhSHvSv+vnoOTDKSTz2aLQn0tYrIRqRo+8bfmMjXuhkwZPSnCpvUGNAJ+w + Jrt/dqMoYUjCBkjylD/qHmnXN5EwS1cMg1Djh65gi5JJLFJ7eNcoSsr/0AJ+TweIal1jJSP3t3PF + 9Uv21gm6xdm7HnNK66WpUUXLDTKaIs/jtagVY1bLOo9oEVeLN4nT2CYWztpMvdCyEDUzgEdDbmrP + F5nKUPK5hrFqo1Dc5rUI4ZshL3Lpv398aMxv6n2adQvuL++URMEbXXBhxOrT6rCtYzbcR5fkwS9i + d3Br45CoWOQro02JAepoU0MQKY5+xQ4Bq9Q7tB9BAwIDAQABMA0GCSqGSIb3DQEBCwUAA4IBAQAe + 4xc+mSvKkrKBHg9/zpkWgZUiOp4ENJCi8H4tea/PCM439v6y/kfjT/okOokFvX8N5aa1OSz2Vsrl + m8kjIc6hiA7bKzT6lb0EyjUShFFZ5jmGVP4S7/hviDvgB5yEQxOPpumkdRP513YnEGj/o9Pazi5h + /MwpRxxazoda9r45kqQpyG+XoM4pB+Fd3JzMc4FUGxfVPxJU4jLawnJJiZ3vqiSyaB0YyUL+Er1Q + 6NnqtR4gEBF0ZVlQmkycFvD4EC2boP943dLqNUvop+4R3SM1QMM6P5u8iTXtHd/VN4MwMyy1wtog + hYAzODo1Jt59pcqqKJEas0C/lFJEB3frw4ImNx5fNlJYOpx+ijfQs9m39CevDq0= + +agent: + enabled: true + defaultsProviderTemplate: "" + # URL for connecting to the Jenkins contoller + jenkinsUrl: + # connect to the specified host and port, instead of connecting directly to the Jenkins controller + jenkinsTunnel: + kubernetesConnectTimeout: 5 + kubernetesReadTimeout: 15 + maxRequestsPerHostStr: "32" + namespace: + image: "jenkins/inbound-agent" + tag: "4.11.2-4" + workingDir: "/home/jenkins/agent" + nodeUsageMode: "NORMAL" + customJenkinsLabels: [] + # name of the secret to be used for image pulling + imagePullSecretName: + componentName: "jenkins-agent" + websocket: false + privileged: false + runAsUser: + runAsGroup: + resources: + requests: + cpu: "512m" + memory: "512Mi" + limits: + cpu: "512m" + memory: "512Mi" + # You may want to change this to true while testing a new image + alwaysPullImage: false + # Controls how agent pods are retained after the Jenkins build completes + # Possible values: Always, Never, OnFailure + podRetention: "Never" + # Disable if you do not want the Yaml the agent pod template to show up + # in the job Console Output. This can be helpful for either security reasons + # or simply to clean up the output to make it easier to read. + showRawYaml: true + # You can define the volumes that you want to mount for this container + # Allowed types are: ConfigMap, EmptyDir, HostPath, Nfs, PVC, Secret + # Configure the attributes as they appear in the corresponding Java class for that type + # https://github.com/jenkinsci/kubernetes-plugin/tree/master/src/main/java/org/csanchez/jenkins/plugins/kubernetes/volumes + volumes: [] + # - type: ConfigMap + # configMapName: myconfigmap + # mountPath: /var/myapp/myconfigmap + # - type: EmptyDir + # mountPath: /var/myapp/myemptydir + # memory: false + # - type: HostPath + # hostPath: /var/lib/containers + # mountPath: /var/myapp/myhostpath + # - type: Nfs + # mountPath: /var/myapp/mynfs + # readOnly: false + # serverAddress: "192.0.2.0" + # serverPath: /var/lib/containers + # - type: PVC + # claimName: mypvc + # mountPath: /var/myapp/mypvc + # readOnly: false + # - type: Secret + # defaultMode: "600" + # mountPath: /var/myapp/mysecret + # secretName: mysecret + # Pod-wide environment, these vars are visible to any container in the agent pod + + # You can define the workspaceVolume that you want to mount for this container + # Allowed types are: DynamicPVC, EmptyDir, HostPath, Nfs, PVC + # Configure the attributes as they appear in the corresponding Java class for that type + # https://github.com/jenkinsci/kubernetes-plugin/tree/master/src/main/java/org/csanchez/jenkins/plugins/kubernetes/volumes/workspace + workspaceVolume: {} + ## DynamicPVC example + # type: DynamicPVC + # configMapName: myconfigmap + ## EmptyDir example + # type: EmptyDir + # memory: false + ## HostPath example + # type: HostPath + # hostPath: /var/lib/containers + ## NFS example + # type: Nfs + # readOnly: false + # serverAddress: "192.0.2.0" + # serverPath: /var/lib/containers + ## PVC example + # type: PVC + # claimName: mypvc + # readOnly: false + # + # Pod-wide environment, these vars are visible to any container in the agent pod + envVars: [] + # - name: PATH + # value: /usr/local/bin + nodeSelector: {} + # Key Value selectors. Ex: + # jenkins-agent: v1 + + # Executed command when side container gets started + command: + args: "${computer.jnlpmac} ${computer.name}" + # Side container name + sideContainerName: "jnlp" + # Doesn't allocate pseudo TTY by default + TTYEnabled: false + # Max number of spawned agent + containerCap: 10 + # Pod name + podName: "default" + # Allows the Pod to remain active for reuse until the configured number of + # minutes has passed since the last step was executed on it. + idleMinutes: 0 + # Raw yaml template for the Pod. For example this allows usage of toleration for agent pods. + # https://github.com/jenkinsci/kubernetes-plugin#using-yaml-to-define-pod-templates + # https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + yamlTemplate: "" + # yamlTemplate: |- + # apiVersion: v1 + # kind: Pod + # spec: + # tolerations: + # - key: "key" + # operator: "Equal" + # value: "value" + # Defines how the raw yaml field gets merged with yaml definitions from inherited pod templates: merge or override + yamlMergeStrategy: "override" + # Timeout in seconds for an agent to be online + connectTimeout: 100 + # Annotations to apply to the pod. + annotations: {} + + # Below is the implementation of custom pod templates for the default configured kubernetes cloud. + # Add a key under podTemplates for each pod template. Each key (prior to | character) is just a label, and can be any value. + # Keys are only used to give the pod template a meaningful name. The only restriction is they may only contain RFC 1123 \ DNS label + # characters: lowercase letters, numbers, and hyphens. Each pod template can contain multiple containers. + # For this pod templates configuration to be loaded the following values must be set: + # controller.JCasC.defaultConfig: true + # Best reference is https:///configuration-as-code/reference#Cloud-kubernetes. The example below creates a python pod template. + podTemplates: {} + # python: | + # - name: python + # label: jenkins-python + # serviceAccount: jenkins + # containers: + # - name: python + # image: python:3 + # command: "/bin/sh -c" + # args: "cat" + # ttyEnabled: true + # privileged: true + # resourceRequestCpu: "400m" + # resourceRequestMemory: "512Mi" + # resourceLimitCpu: "1" + # resourceLimitMemory: "1024Mi" + +# Here you can add additional agents +# They inherit all values from `agent` so you only need to specify values which differ +additionalAgents: {} +# maven: +# podName: maven +# customJenkinsLabels: maven +# # An example of overriding the jnlp container +# # sideContainerName: jnlp +# image: jenkins/jnlp-agent-maven +# tag: latest +# python: +# podName: python +# customJenkinsLabels: python +# sideContainerName: python +# image: python +# tag: "3" +# command: "/bin/sh -c" +# args: "cat" +# TTYEnabled: true + +persistence: + enabled: true + ## A manually managed Persistent Volume and Claim + ## Requires persistence.enabled: true + ## If defined, PVC must be created manually before volume will be bound + existingClaim: + ## jenkins data Persistent Volume Storage Class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + storageClass: jenkins-pv + annotations: {} + labels: {} + accessMode: "ReadWriteOnce" + size: "8Gi" + volumes: + # - name: nothing + # emptyDir: {} + mounts: + # - mountPath: /var/nothing + # name: nothing + # readOnly: true + +networkPolicy: + # Enable creation of NetworkPolicy resources. + enabled: false + # For Kubernetes v1.4, v1.5 and v1.6, use 'extensions/v1beta1' + # For Kubernetes v1.7, use 'networking.k8s.io/v1' + apiVersion: networking.k8s.io/v1 + # You can allow agents to connect from both within the cluster (from within specific/all namespaces) AND/OR from a given external IP range + internalAgents: + allowed: true + podLabels: {} + namespaceLabels: {} + # project: myproject + externalAgents: {} + # ipCIDR: 172.17.0.0/16 + # except: + # - 172.17.1.0/24 + +## Install Default RBAC roles and bindings +rbac: + create: true + readSecrets: false + +serviceAccount: + create: false + # The name of the service account is autogenerated by default + name: jenkins + annotations: {} + imagePullSecretName: + + +serviceAccountAgent: + # Specifies whether a ServiceAccount should be created + create: false + # The name of the ServiceAccount to use. + # If not set and create is true, a name is generated using the fullname template + name: + annotations: {} + imagePullSecretName: + +## Backup cronjob configuration +## Ref: https://github.com/maorfr/kube-tasks +backup: + # Backup must use RBAC + # So by enabling backup you are enabling RBAC specific for backup + enabled: false + # Used for label app.kubernetes.io/component + componentName: "backup" + # Schedule to run jobs. Must be in cron time format + # Ref: https://crontab.guru/ + schedule: "0 2 * * *" + labels: {} + serviceAccount: + create: true + name: + annotations: {} + # Example for authorization to AWS S3 using kube2iam or IRSA + # Can also be done using environment variables + # iam.amazonaws.com/role: "jenkins" + # "eks.amazonaws.com/role-arn": "arn:aws:iam::123456789012:role/jenkins-backup" + # Set this to terminate the job that is running/failing continously and set the job status to "Failed" + activeDeadlineSeconds: "" + image: + repository: "maorfr/kube-tasks" + tag: "0.2.0" + # Additional arguments for kube-tasks + # Ref: https://github.com/maorfr/kube-tasks#simple-backup + extraArgs: [] + # Add existingSecret for AWS credentials + existingSecret: {} + ## Example for using an existing secret + # jenkinsaws: + ## Use this key for AWS access key ID + # awsaccesskey: jenkins_aws_access_key + ## Use this key for AWS secret access key + # awssecretkey: jenkins_aws_secret_key + # Add additional environment variables + # jenkinsgcp: + ## Use this key for GCP credentials + # gcpcredentials: credentials.json + env: [] + # Example environment variable required for AWS credentials chain + # - name: "AWS_REGION" + # value: "us-east-1" + resources: + requests: + memory: 1Gi + cpu: 1 + limits: + memory: 1Gi + cpu: 1 + # Destination to store the backup artifacts + # Supported cloud storage services: AWS S3, Minio S3, Azure Blob Storage, Google Cloud Storage + # Additional support can added. Visit this repository for details + # Ref: https://github.com/maorfr/skbn + destination: "s3://jenkins-data/backup" + # By enabling only the jenkins_home/jobs folder gets backed up, not the whole jenkins instance + onlyJobs: false + # Enable backup pod security context (must be `true` if runAsUser or fsGroup are set) + usePodSecurityContext: true + # When setting runAsUser to a different value than 0 also set fsGroup to the same value: + runAsUser: 1000 + fsGroup: 1000 + securityContextCapabilities: {} + # drop: + # - NET_RAW +checkDeprecation: true + +awsSecurityGroupPolicies: + enabled: false + policies: + - name: "" + securityGroupIds: [] + podSelector: {} diff --git a/2022/tr/Days/CICD/Jenkins/jenkins-volume.yml b/2022/tr/Days/CICD/Jenkins/jenkins-volume.yml new file mode 100644 index 0000000..fc60626 --- /dev/null +++ b/2022/tr/Days/CICD/Jenkins/jenkins-volume.yml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: jenkins-pv + namespace: jenkins +spec: + storageClassName: jenkins-pv + accessModes: + - ReadWriteOnce + capacity: + storage: 20Gi + persistentVolumeReclaimPolicy: Retain + hostPath: + path: /data/jenkins-volume/ diff --git a/2022/tr/Days/CICD/Jenkins/steps.md b/2022/tr/Days/CICD/Jenkins/steps.md new file mode 100644 index 0000000..55e3c4b --- /dev/null +++ b/2022/tr/Days/CICD/Jenkins/steps.md @@ -0,0 +1,37 @@ +## Steps taken to deploy Jenkins + +minikube start + +kubectl create namespace jenkins or kubectl create -f jenkins-namespace.yml + +kubectl get namespaces + +helm repo list + +helm repo add jenkinsci https://charts.jenkins.io + +helm repo update + +kubectl apply -f jenkins-volume.yml + +kubectl apply -f jenkins-sa.yml + +chart=jenkinsci/jenkins +helm install jenkins -n jenkins -f jenkins-values.yml $chart + +minikube ssh +sudo chown -R 1000:1000 /data/jenkins-volume + +kubectl delete pod jenkins-0 -n jenkins + +kubectl get pods -n jenkins -w + +kubectl exec --namespace jenkins -it svc/jenkins -c jenkins -- /bin/cat /run/secrets/chart-admin-password && echo + +kubectl --namespace jenkins port-forward svc/jenkins 8080:8080 + +open browser and login to http://localhost:8080 + +perform plugin updates + + diff --git a/2022/tr/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-parameters.json b/2022/tr/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-parameters.json new file mode 100644 index 0000000..a8c8591 --- /dev/null +++ b/2022/tr/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-parameters.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "vmSize": { + "value": "Standard_D2s_v3" + }, + "adminUsername": { + "value": "Student" + }, + "adminPassword": { + "value": "Pa55w.rd1234" + } + } +} diff --git a/2022/tr/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-template.json b/2022/tr/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-template.json new file mode 100644 index 0000000..c998729 --- /dev/null +++ b/2022/tr/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-template.json @@ -0,0 +1,162 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "vmSize": { + "type": "string", + "defaultValue": "Standard_D2s_v3", + "metadata": { + "description": "VM size" + } + }, + "vmName": { + "type": "string", + "defaultValue": "90day-vm", + "metadata": { + "description": "VM name Prefix" + } + }, + "vmCount": { + "type": "int", + "defaultValue": 2, + "metadata": { + "description": "Number of VMs" + } + }, + "adminUsername": { + "type": "string", + "metadata": { + "description": "Admin username" + } + }, + "adminPassword": { + "type": "securestring", + "metadata": { + "description": "Admin password" + } + }, + "virtualNetworkName": { + "type": "string", + "defaultValue": "90daysofdevops", + "metadata": { + "description": "Virtual network name" + } + } + }, + "variables": { + "nic": "90daysofdevops", + "virtualNetworkName": "[parameters('virtualNetworkName')]", + "subnetName": "subnet", + "subnet0Name": "subnet0", + "subnet1Name": "subnet1", + "computeApiVersion": "2018-06-01", + "networkApiVersion": "2018-08-01" + }, + "resources": [ + { + "name": "[concat(parameters('vmName'),copyIndex())]", + "copy": { + "name": "VMcopy", + "count": "[parameters('vmCount')]" + }, + "type": "Microsoft.Compute/virtualMachines", + "apiVersion": "[variables('computeApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Creating VMs", + "dependsOn": [ + "[concat(variables('nic'),copyIndex())]" + ], + "properties": { + "osProfile": { + "computerName": "[concat(parameters('vmName'),copyIndex())]", + "adminUsername": "[parameters('adminUsername')]", + "adminPassword": "[parameters('adminPassword')]", + "windowsConfiguration": { + "provisionVmAgent": "true" + } + }, + "hardwareProfile": { + "vmSize": "[parameters('vmSize')]" + }, + "storageProfile": { + "imageReference": { + "publisher": "MicrosoftWindowsServer", + "offer": "WindowsServer", + "sku": "2019-Datacenter", + "version": "latest" + }, + "osDisk": { + "createOption": "fromImage" + }, + "dataDisks": [] + }, + "networkProfile": { + "networkInterfaces": [ + { + "properties": { + "primary": true + }, + "id": "[resourceId('Microsoft.Network/networkInterfaces', concat(variables('nic'),copyIndex()))]" + } + ] + } + } + }, + { + "type": "Microsoft.Network/virtualNetworks", + "name": "[variables('virtualNetworkName')]", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Virtual Network", + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.40.0.0/22" + ] + }, + "subnets": [ + { + "name": "[variables('subnet0Name')]", + "properties": { + "addressPrefix": "10.40.0.0/24" + } + }, + { + "name": "[variables('subnet1Name')]", + "properties": { + "addressPrefix": "10.40.1.0/24" + } + } + ] + } + }, + { + "name": "[concat(variables('nic'),copyIndex())]", + "copy":{ + "name": "nicCopy", + "count": "[parameters('vmCount')]" + }, + "type": "Microsoft.Network/networkInterfaces", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Primary NIC", + "dependsOn": [ + "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]" + ], + "properties": { + "ipConfigurations": [ + { + "name": "ipconfig1", + "properties": { + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), concat(variables('subnetName'),copyIndex()))]" + }, + "privateIPAllocationMethod": "Dynamic" + } + } + ] + } + } + ], + "outputs": {} +} \ No newline at end of file diff --git a/2022/tr/Days/Cloud/01VirtualNetworking/Module4_90DaysOfDevOps.ps1 b/2022/tr/Days/Cloud/01VirtualNetworking/Module4_90DaysOfDevOps.ps1 new file mode 100644 index 0000000..e3be017 --- /dev/null +++ b/2022/tr/Days/Cloud/01VirtualNetworking/Module4_90DaysOfDevOps.ps1 @@ -0,0 +1,6 @@ +$rgName = '90DaysOfDevOps' + +New-AzResourceGroupDeployment ` +-ResourceGroupName $rgName ` +-TemplateFile C:\Users\micha\demo\90DaysOfDevOps\Days\Cloud\01VirtualNetworking\Mod04_90DaysOfDevOps-vms-loop-template.json ` +-TemplateParameterFile C:\Users\micha\demo\90DaysOfDevOps\Days\Cloud\01VirtualNetworking\Mod04_90DaysOfDevOps-vms-loop-parameters.json \ No newline at end of file diff --git a/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-parameters.json b/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-parameters.json new file mode 100644 index 0000000..fabe43e --- /dev/null +++ b/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-parameters.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "vmSize": { + "value": "Standard_D2s_v3" + }, + "adminUsername": { + "value": "Student" + }, + "adminPassword": { + "value": "Pa55w.rd1234" + } + } +} \ No newline at end of file diff --git a/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-template.json b/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-template.json new file mode 100644 index 0000000..730971b --- /dev/null +++ b/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-template.json @@ -0,0 +1,237 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "vmSize": { + "type": "string", + "defaultValue": "Standard_D2s_v3", + "metadata": { + "description": "VM size" + } + }, + "vmName": { + "type": "string", + "defaultValue": "90day-vm", + "metadata": { + "description": "VM name Prefix" + } + }, + "vmCount": { + "type": "int", + "defaultValue": 4, + "metadata": { + "description": "Number of VMs" + } + }, + "adminUsername": { + "type": "string", + "metadata": { + "description": "Admin username" + } + }, + "adminPassword": { + "type": "securestring", + "metadata": { + "description": "Admin password" + } + } + }, + "variables": { + "vmExtensionName": "customScriptExtension", + "nic": "90day-vm-nic", + "virtualNetworkNames": "[createArray('90day-vm-vnet01','90day-vm-vnet01','90day-vm-vnet2','90day-vm-vnet3')]", + "virtualNetworkNamestbc": "[createArray('90day-vm-vnet01','90day-vm-vnet2','90day-vm-vnet3')]", + "VNetPrefixes":"[createArray('10.60','10.62','10.63')]", + "nsgNames": "[createArray('90day-vm-nsg01','90day-vm-nsg01','90day-vm-nsg2','90day-vm-nsg3')]", + "nsgNamestbc": "[createArray('90day-vm-nsg01','90day-vm-nsg2','90day-vm-nsg3')]", + "subnetName": "subnet", + "subnetRefs": "[createArray(0,1,0,0)]", + "computeApiVersion": "2018-06-01", + "networkApiVersion": "2018-08-01" + }, + "resources": [ + { + "name": "[concat(parameters('vmName'),copyIndex())]", + "copy": { + "name": "VMcopy", + "count": "[parameters('vmCount')]" + }, + "type": "Microsoft.Compute/virtualMachines", + "apiVersion": "[variables('computeApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Creating VMs", + "dependsOn": [ + "[concat(variables('nic'),copyIndex())]" + ], + "properties": { + "osProfile": { + "computerName": "[concat(parameters('vmName'),copyIndex())]", + "adminUsername": "[parameters('adminUsername')]", + "adminPassword": "[parameters('adminPassword')]", + "windowsConfiguration": { + "provisionVmAgent": "true" + } + }, + "hardwareProfile": { + "vmSize": "[parameters('vmSize')]" + }, + "storageProfile": { + "imageReference": { + "publisher": "MicrosoftWindowsServer", + "offer": "WindowsServer", + "sku": "2019-Datacenter", + "version": "latest" + }, + "osDisk": { + "createOption": "fromImage" + }, + "dataDisks": [] + }, + "networkProfile": { + "networkInterfaces": [ + { + "properties": { + "primary": true + }, + "id": "[resourceId('Microsoft.Network/networkInterfaces', concat(variables('nic'),copyIndex()))]" + } + ] + } + } + }, + { + "type": "Microsoft.Compute/virtualMachines/extensions", + "name": "[concat(concat(parameters('vmName'),copyIndex()), '/', variables('vmExtensionName'))]", + "copy": { + "name": "Extopy", + "count": "[parameters('vmCount')]" + }, + "apiVersion": "[variables('computeApiVersion')]", + "location": "[resourceGroup().location]", + "dependsOn": [ + "[concat('Microsoft.Compute/virtualMachines/', concat(parameters('vmName'),copyIndex()))]" + ], + "properties": { + "publisher": "Microsoft.Compute", + "type": "CustomScriptExtension", + "typeHandlerVersion": "1.7", + "autoUpgradeMinorVersion": true, + "settings": { + "commandToExecute": "powershell.exe Install-WindowsFeature -name Web-Server -IncludeManagementTools && powershell.exe remove-item 'C:\\inetpub\\wwwroot\\iisstart.htm' && powershell.exe Add-Content -Path 'C:\\inetpub\\wwwroot\\iisstart.htm' -Value $('Hello World from ' + $env:computername)" + } + } + }, + { + "type": "Microsoft.Network/virtualNetworks", + "name": "[variables('virtualNetworkNamestbc')[copyIndex()]]", + "copy": { + "name": "VnetCopy", + "count": "[length(variables('virtualNetworkNamestbc'))]" + }, + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Virtual Network", + "properties": { + "addressSpace": { + "addressPrefixes": [ + "[concat(variables('VNetPrefixes')[copyIndex()],'.0.0/22')]" + ] + }, + "subnets": [ + { + "name": "[concat(variables('subnetName'),'0')]", + "properties": { + "addressPrefix": "[concat(variables('VNetPrefixes')[copyIndex()],'.0.0/24')]" + } + } + ] + + } + }, + { "type": "Microsoft.Network/virtualNetworks/subnets", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Virtual Network Subnet for VNet01", + "name": "90day-vm-vnet01/subnet1", + "properties": { + "addressPrefix": "10.60.1.0/24" + }, + "dependsOn": [ + "Microsoft.Network/virtualNetworks/90day-vm-vnet01" + ] + }, + { + "name": "[concat(variables('nic'),copyIndex())]", + "copy":{ + "name": "nicCopy", + "count": "[parameters('vmCount')]" + }, + "type": "Microsoft.Network/networkInterfaces", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Primary NIC", + "dependsOn": [ + "[variables('nsgNames')[copyindex()]]", + "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkNames')[copyIndex()])]" + ], + "properties": { + "ipConfigurations": [ + { + "name": "ipconfig1", + "properties": { + "subnet": { + "id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkNames')[copyIndex()], concat(variables('subnetName'),variables('subnetRefs')[copyindex()]))]" + }, + "privateIPAllocationMethod": "Dynamic" + } + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgNames')[copyIndex()])]" + } + } + }, + { + "name": "[variables('nsgNamestbc')[copyIndex()]]", + "copy": { + "name": "nsgCopy", + "count": 3 + }, + "type": "Microsoft.Network/networkSecurityGroups", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Network Security Group (NSG) for Primary NIC", + "properties": { + "securityRules": [ + { + "name": "default-allow-rdp", + "properties": { + "priority": 1000, + "sourceAddressPrefix": "*", + "protocol": "Tcp", + "destinationPortRange": "3389", + "access": "Allow", + "direction": "Inbound", + "sourcePortRange": "*", + "destinationAddressPrefix": "*" + } + }, + { + "name": "default-allow-http", + "properties": { + "priority": 1100, + "sourceAddressPrefix": "*", + "protocol": "Tcp", + "destinationPortRange": "80", + "access": "Allow", + "direction": "Inbound", + "sourcePortRange": "*", + "destinationAddressPrefix": "*" + } + } + ] + } + } + ], + "outputs": {} +} \ No newline at end of file diff --git a/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps.ps1 b/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps.ps1 new file mode 100644 index 0000000..321b327 --- /dev/null +++ b/2022/tr/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps.ps1 @@ -0,0 +1,21 @@ +$rgName = '90DaysOfDevOps' + +New-AzResourceGroupDeployment ` + -ResourceGroupName $rgName ` + -TemplateFile C:\Users\micha\demo\90DaysOfDevOps\Days\Cloud\02TrafficManagement\Mod06_90DaysOfDevOps-vms-loop-template.json ` + -TemplateParameterFile C:\Users\micha\demo\90DaysOfDevOps\Days\Cloud\02TrafficManagement\Mod06_90DaysOfDevOps-vms-loop-parameters.json + + $location = (Get-AzResourceGroup -ResourceGroupName $rgName).location + $vmNames = (Get-AzVM -ResourceGroupName $rgName).Name + + foreach ($vmName in $vmNames) { + Set-AzVMExtension ` + -ResourceGroupName $rgName ` + -Location $location ` + -VMName $vmName ` + -Name 'networkWatcherAgent' ` + -Publisher 'Microsoft.Azure.NetworkWatcher' ` + -Type 'NetworkWatcherAgentWindows' ` + -TypeHandlerVersion '1.4' + } + \ No newline at end of file diff --git a/2022/tr/Days/Cloud/03Storage/LICENSE b/2022/tr/Days/Cloud/03Storage/LICENSE new file mode 100644 index 0000000..183d56b --- /dev/null +++ b/2022/tr/Days/Cloud/03Storage/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2018 Microsoft + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-parameters.json b/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-parameters.json new file mode 100644 index 0000000..fabe43e --- /dev/null +++ b/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-parameters.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "vmSize": { + "value": "Standard_D2s_v3" + }, + "adminUsername": { + "value": "Student" + }, + "adminPassword": { + "value": "Pa55w.rd1234" + } + } +} \ No newline at end of file diff --git a/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-template.json b/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-template.json new file mode 100644 index 0000000..46ab60b --- /dev/null +++ b/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-template.json @@ -0,0 +1,172 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "vmSize": { + "type": "string", + "defaultValue": "Standard_D2s_v3", + "metadata": { + "description": "Virtual machine size" + } + }, + "adminUsername": { + "type": "string", + "metadata": { + "description": "Admin username" + } + }, + "adminPassword": { + "type": "securestring", + "metadata": { + "description": "Admin password" + } + } + }, + "variables": { + "vmName": "90Days-vm0", + "nicName": "90Days-nic0", + "virtualNetworkName": "90Days-vnet0", + "publicIPAddressName": "90Days-pip0", + "nsgName": "90Days-nsg0", + "vnetIpPrefix": "10.70.0.0/22", + "subnetIpPrefix": "10.70.0.0/24", + "subnetName": "subnet0", + "subnetRef": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnetName'))]", + "computeApiVersion": "2018-06-01", + "networkApiVersion": "2018-08-01" + }, + "resources": [ + { + "name": "[variables('vmName')]", + "type": "Microsoft.Compute/virtualMachines", + "apiVersion": "[variables('computeApiVersion')]", + "location": "[resourceGroup().location]", + "dependsOn": [ + "[variables('nicName')]" + ], + "properties": { + "osProfile": { + "computerName": "[variables('vmName')]", + "adminUsername": "[parameters('adminUsername')]", + "adminPassword": "[parameters('adminPassword')]", + "windowsConfiguration": { + "provisionVmAgent": "true" + } + }, + "hardwareProfile": { + "vmSize": "[parameters('vmSize')]" + }, + "storageProfile": { + "imageReference": { + "publisher": "MicrosoftWindowsServer", + "offer": "WindowsServer", + "sku": "2019-Datacenter", + "version": "latest" + }, + "osDisk": { + "createOption": "fromImage" + }, + "dataDisks": [] + }, + "networkProfile": { + "networkInterfaces": [ + { + "properties": { + "primary": true + }, + "id": "[resourceId('Microsoft.Network/networkInterfaces', variables('nicName'))]" + } + ] + } + } + }, + { + "type": "Microsoft.Network/virtualNetworks", + "name": "[variables('virtualNetworkName')]", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Virtual Network", + "properties": { + "addressSpace": { + "addressPrefixes": [ + "[variables('vnetIpPrefix')]" + ] + }, + "subnets": [ + { + "name": "[variables('subnetName')]", + "properties": { + "addressPrefix": "[variables('subnetIpPrefix')]" + } + } + ] + } + }, + { + "name": "[variables('nicName')]", + "type": "Microsoft.Network/networkInterfaces", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Primary NIC", + "dependsOn": [ + "[variables('publicIpAddressName')]", + "[variables('nsgName')]", + "[variables('virtualNetworkName')]" + ], + "properties": { + "ipConfigurations": [ + { + "name": "ipconfig1", + "properties": { + "subnet": { + "id": "[variables('subnetRef')]" + }, + "privateIPAllocationMethod": "Dynamic", + "publicIpAddress": { + "id": "[resourceId('Microsoft.Network/publicIpAddresses', variables('publicIpAddressName'))]" + } + } + } + ], + "networkSecurityGroup": { + "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]" + } + } + }, + { + "name": "[variables('publicIpAddressName')]", + "type": "Microsoft.Network/publicIpAddresses", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Public IP for Primary NIC", + "properties": { + "publicIpAllocationMethod": "Dynamic" + } + }, + { + "name": "[variables('nsgName')]", + "type": "Microsoft.Network/networkSecurityGroups", + "apiVersion": "[variables('networkApiVersion')]", + "location": "[resourceGroup().location]", + "comments": "Network Security Group (NSG) for Primary NIC", + "properties": { + "securityRules": [ + { + "name": "default-allow-rdp", + "properties": { + "priority": 1000, + "sourceAddressPrefix": "*", + "protocol": "Tcp", + "destinationPortRange": "3389", + "access": "Allow", + "direction": "Inbound", + "sourcePortRange": "*", + "destinationAddressPrefix": "*" + } + } + ] + } + } + ], + "outputs": {} +} diff --git a/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps.ps1 b/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps.ps1 new file mode 100644 index 0000000..02d76c8 --- /dev/null +++ b/2022/tr/Days/Cloud/03Storage/Mod07_90DaysOfDevOps.ps1 @@ -0,0 +1,7 @@ +$rgName = '90DaysOfDevOps' + +New-AzResourceGroupDeployment ` + -ResourceGroupName $rgName ` + -TemplateFile C:\Users\micha\demo\90DaysOfDevOps\Days\Cloud\03Storage\Mod07_90DaysOfDevOps-vm-template.json ` + -TemplateParameterFile C:\Users\micha\demo\90DaysOfDevOps\Days\Cloud\03Storage\Mod07_90DaysOfDevOps-vm-parameters.json ` + -AsJob diff --git a/2022/tr/Days/Cloud/04Serverless/Mod09a_90DaysOfDevOps.ps1 b/2022/tr/Days/Cloud/04Serverless/Mod09a_90DaysOfDevOps.ps1 new file mode 100644 index 0000000..58914a9 --- /dev/null +++ b/2022/tr/Days/Cloud/04Serverless/Mod09a_90DaysOfDevOps.ps1 @@ -0,0 +1,7 @@ +$rgName = '90DaysOfDevOps' + +$webapp = Get-AzWebApp -ResourceGroupName $rgName + + +#The following following will start an infinite loop that sends the HTTP requests to the web app +while ($true) { Invoke-WebRequest -Uri $webapp.DefaultHostName } \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/Vagrantfile b/2022/tr/Days/Configmgmt/Vagrantfile new file mode 100644 index 0000000..0004218 --- /dev/null +++ b/2022/tr/Days/Configmgmt/Vagrantfile @@ -0,0 +1,48 @@ +Vagrant.configure("2") do |config| + servers=[ + { + :hostname => "db01", + :box => "bento/ubuntu-21.10", + :ip => "192.168.169.130", + :ssh_port => '2210' + }, + { + :hostname => "web01", + :box => "bento/ubuntu-21.10", + :ip => "192.168.169.131", + :ssh_port => '2211' + }, + { + :hostname => "web02", + :box => "bento/ubuntu-21.10", + :ip => "192.168.169.132", + :ssh_port => '2212' + }, + { + :hostname => "loadbalancer", + :box => "bento/ubuntu-21.10", + :ip => "192.168.169.134", + :ssh_port => '2213' + } + + ] + +config.vm.base_address = 600 + + servers.each do |machine| + + config.vm.define machine[:hostname] do |node| + node.vm.box = machine[:box] + node.vm.hostname = machine[:hostname] + + node.vm.network :public_network, bridge: "Intel(R) Ethernet Connection (7) I219-V", ip: machine[:ip] + node.vm.network "forwarded_port", guest: 22, host: machine[:ssh_port], id: "ssh" + + node.vm.provider :virtualbox do |v| + v.customize ["modifyvm", :id, "--memory", 2048] + v.customize ["modifyvm", :id, "--name", machine[:hostname]] + end + end + end + +end \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario1/playbook1.yml b/2022/tr/Days/Configmgmt/ansible-scenario1/playbook1.yml new file mode 100644 index 0000000..a13ed00 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario1/playbook1.yml @@ -0,0 +1,36 @@ +- hosts: webservers + become: yes + vars: + http_port: 8000 + https_port: 4443 + html_welcome_msg: "Hello 90DaysOfDevOps" + tasks: + - name: ensure apache is at the latest version + apt: + name: apache2 + state: latest + + - name: write the apache2 ports.conf config file + template: + src: templates/ports.conf.j2 + dest: /etc/apache2/ports.conf + notify: + - restart apache + + - name: write a basic index.html file + template: + src: templates/index.html.j2 + dest: /var/www/html/index.html + notify: + - restart apache + + - name: ensure apache is running + service: + name: apache2 + state: started + + handlers: + - name: restart apache + service: + name: apache2 + state: restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario1/templates/index.html.j2 b/2022/tr/Days/Configmgmt/ansible-scenario1/templates/index.html.j2 new file mode 100644 index 0000000..acdefbe --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario1/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}

+ + \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario1/templates/ports.conf.j2 b/2022/tr/Days/Configmgmt/ansible-scenario1/templates/ports.conf.j2 new file mode 100644 index 0000000..1793522 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario1/templates/ports.conf.j2 @@ -0,0 +1,16 @@ + +# If you just change the port or add more ports here, you will likely also +# have to change the VirtualHost statement in +# /etc/apache2/sites-enabled/000-default.conf + +Listen {{ http_port }} + + + Listen {{ https_port }} + + + + Listen {{ https_port }} + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet diff --git a/2022/tr/Days/Configmgmt/ansible-scenario2/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario2/handlers/main.yml new file mode 100644 index 0000000..ff3da8d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario2/handlers/main.yml @@ -0,0 +1,4 @@ +- name: restart apache + service: + name: apache2 + state: restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario2/playbook2.yml b/2022/tr/Days/Configmgmt/ansible-scenario2/playbook2.yml new file mode 100644 index 0000000..a7a8cca --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario2/playbook2.yml @@ -0,0 +1,11 @@ +- hosts: webservers + become: yes + vars: + http_port: 8000 + https_port: 4443 + html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!" + tasks: + - import_tasks: tasks/apache2_install.yml + + handlers: + - import_tasks: handlers/main.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario2/tasks/apache2_install.yml b/2022/tr/Days/Configmgmt/ansible-scenario2/tasks/apache2_install.yml new file mode 100644 index 0000000..c75b06b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario2/tasks/apache2_install.yml @@ -0,0 +1,18 @@ +- name: ensure apache is at the latest version + apt: name=apache2 state=latest + +- name: write the apache2 ports.conf config file + template: src=templates/ports.conf.j2 dest=/etc/apache2/ports.conf + notify: restart apache + +- name: write a basic index.html file + template: + src: templates/index.html.j2 + dest: /var/www/html/index.html + notify: + - restart apache + +- name: ensure apache is running + service: + name: apache2 + state: started \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario2/templates/index.html.j2 b/2022/tr/Days/Configmgmt/ansible-scenario2/templates/index.html.j2 new file mode 100644 index 0000000..acdefbe --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario2/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}

+ + \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario2/templates/ports.conf.j2 b/2022/tr/Days/Configmgmt/ansible-scenario2/templates/ports.conf.j2 new file mode 100644 index 0000000..1793522 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario2/templates/ports.conf.j2 @@ -0,0 +1,16 @@ + +# If you just change the port or add more ports here, you will likely also +# have to change the VirtualHost statement in +# /etc/apache2/sites-enabled/000-default.conf + +Listen {{ http_port }} + + + Listen {{ https_port }} + + + + Listen {{ https_port }} + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/playbook3.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/playbook3.yml new file mode 100644 index 0000000..4de44c3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/playbook3.yml @@ -0,0 +1,8 @@ +- hosts: webservers + become: yes + vars: + http_port: 8000 + https_port: 4443 + html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!" + roles: + - apache2 \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/.travis.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/.travis.yml new file mode 100644 index 0000000..36bbf62 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/.travis.yml @@ -0,0 +1,29 @@ +--- +language: python +python: "2.7" + +# Use the new container infrastructure +sudo: false + +# Install ansible +addons: + apt: + packages: + - python-pip + +install: + # Install ansible + - pip install ansible + + # Check ansible version + - ansible --version + + # Create ansible.cfg with correct roles_path + - printf '[defaults]\nroles_path=../' >ansible.cfg + +script: + # Basic role syntax check + - ansible-playbook tests/test.yml -i tests/inventory --syntax-check + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/README.md b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/defaults/main.yml new file mode 100644 index 0000000..118c758 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/handlers/main.yml new file mode 100644 index 0000000..ff3da8d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/handlers/main.yml @@ -0,0 +1,4 @@ +- name: restart apache + service: + name: apache2 + state: restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/apache2_install.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 0000000..c75b06b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/apache2_install.yml @@ -0,0 +1,18 @@ +- name: ensure apache is at the latest version + apt: name=apache2 state=latest + +- name: write the apache2 ports.conf config file + template: src=templates/ports.conf.j2 dest=/etc/apache2/ports.conf + notify: restart apache + +- name: write a basic index.html file + template: + src: templates/index.html.j2 + dest: /var/www/html/index.html + notify: + - restart apache + +- name: ensure apache is running + service: + name: apache2 + state: started \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/main.yml new file mode 100644 index 0000000..6024204 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/apache2 +- import_tasks: apache2_install.yml diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/index.html.j2 b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/index.html.j2 new file mode 100644 index 0000000..acdefbe --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}

+ + \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/ports.conf.j2 b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 0000000..1793522 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/ports.conf.j2 @@ -0,0 +1,16 @@ + +# If you just change the port or add more ports here, you will likely also +# have to change the VirtualHost statement in +# /etc/apache2/sites-enabled/000-default.conf + +Listen {{ http_port }} + + + Listen {{ https_port }} + + + + Listen {{ https_port }} + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/test.yml new file mode 100644 index 0000000..716bef3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/vars/main.yml new file mode 100644 index 0000000..d34faf4 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario3/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/playbook4.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/playbook4.yml new file mode 100644 index 0000000..2034293 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/playbook4.yml @@ -0,0 +1,15 @@ +- hosts: webservers + become: yes + vars: + http_port: 8000 + https_port: 4443 + html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!" + roles: + - common + - apache2 + +- hosts: proxy + become: yes + roles: + - common + - nginx \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/.travis.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/.travis.yml new file mode 100644 index 0000000..36bbf62 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/.travis.yml @@ -0,0 +1,29 @@ +--- +language: python +python: "2.7" + +# Use the new container infrastructure +sudo: false + +# Install ansible +addons: + apt: + packages: + - python-pip + +install: + # Install ansible + - pip install ansible + + # Check ansible version + - ansible --version + + # Create ansible.cfg with correct roles_path + - printf '[defaults]\nroles_path=../' >ansible.cfg + +script: + # Basic role syntax check + - ansible-playbook tests/test.yml -i tests/inventory --syntax-check + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/README.md b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/defaults/main.yml new file mode 100644 index 0000000..118c758 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/handlers/main.yml new file mode 100644 index 0000000..ff3da8d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/handlers/main.yml @@ -0,0 +1,4 @@ +- name: restart apache + service: + name: apache2 + state: restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/apache2_install.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 0000000..c75b06b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/apache2_install.yml @@ -0,0 +1,18 @@ +- name: ensure apache is at the latest version + apt: name=apache2 state=latest + +- name: write the apache2 ports.conf config file + template: src=templates/ports.conf.j2 dest=/etc/apache2/ports.conf + notify: restart apache + +- name: write a basic index.html file + template: + src: templates/index.html.j2 + dest: /var/www/html/index.html + notify: + - restart apache + +- name: ensure apache is running + service: + name: apache2 + state: started \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/main.yml new file mode 100644 index 0000000..6024204 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/apache2 +- import_tasks: apache2_install.yml diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/index.html.j2 b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/index.html.j2 new file mode 100644 index 0000000..acdefbe --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}

+ + \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/ports.conf.j2 b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 0000000..1793522 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/ports.conf.j2 @@ -0,0 +1,16 @@ + +# If you just change the port or add more ports here, you will likely also +# have to change the VirtualHost statement in +# /etc/apache2/sites-enabled/000-default.conf + +Listen {{ http_port }} + + + Listen {{ https_port }} + + + + Listen {{ https_port }} + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/test.yml new file mode 100644 index 0000000..716bef3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/vars/main.yml new file mode 100644 index 0000000..d34faf4 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/defaults/main.yml new file mode 100644 index 0000000..28cf403 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/handlers/main.yml new file mode 100644 index 0000000..d29b8e9 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tasks/install_tools.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tasks/install_tools.yml new file mode 100644 index 0000000..653bf95 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tasks/install_tools.yml @@ -0,0 +1,6 @@ +- name: "Install Common packages" + apt: name={{ item }} state=latest + with_items: + - neofetch + - tree + - figlet \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tasks/main.yml new file mode 100644 index 0000000..0f9c34d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/common +- import_tasks: install_tools.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tests/test.yml new file mode 100644 index 0000000..1cbebf5 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/vars/main.yml new file mode 100644 index 0000000..f83eed7 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/common/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/defaults/main.yml new file mode 100644 index 0000000..a28e129 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/handlers/main.yml new file mode 100644 index 0000000..494b444 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/handlers/main.yml @@ -0,0 +1,4 @@ +--- +# handlers file for roles/nginx +- name: restart nginx + service: name=nginx state=restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/configure_nginx.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/configure_nginx.yml new file mode 100644 index 0000000..66e02d3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/configure_nginx.yml @@ -0,0 +1,8 @@ +- name: Deploy Nginx sites configuration + template: + src: mysite.j2 + dest: "/etc/nginx/sites-enabled/mysite" + notify: restart nginx + +- name: Remove defaults + file: path="/etc/nginx/sites-enabled/default" state=absent \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/install_packages.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/install_packages.yml new file mode 100644 index 0000000..7feeda8 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/install_packages.yml @@ -0,0 +1,4 @@ +- name: "Install Nginx packages" + apt: + name: nginx + state: present \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/main.yml new file mode 100644 index 0000000..abb54a9 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/main.yml @@ -0,0 +1,4 @@ +--- +# tasks file for roles/nginx +- import_tasks: install_packages.yml +- import_tasks: configure_nginx.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/templates/mysite.j2 b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/templates/mysite.j2 new file mode 100644 index 0000000..7c7f562 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/templates/mysite.j2 @@ -0,0 +1,12 @@ + upstream webservers { + server 192.168.169.131:8000; + server 192.168.169.132:8000; + } + + server { + listen 80; + + location / { + proxy_pass http://webservers; + } + } diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/test.yml new file mode 100644 index 0000000..6750534 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/vars/main.yml new file mode 100644 index 0000000..4d5dfe2 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario4/roles/nginx/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/facts.json b/2022/tr/Days/Configmgmt/ansible-scenario5/facts.json new file mode 100644 index 0000000..fdc71e2 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/facts.json @@ -0,0 +1,990 @@ +loadbalancer | SUCCESS => { + "ansible_facts": { + "ansible_all_ipv4_addresses": [ + "192.168.169.134", + "10.0.2.15" + ], + "ansible_all_ipv6_addresses": [ + "fe80::a00:27ff:fe58:d805", + "fe80::a00:27ff:fece:5875" + ], + "ansible_apparmor": { + "status": "enabled" + }, + "ansible_architecture": "x86_64", + "ansible_bios_date": "12/01/2006", + "ansible_bios_vendor": "innotek GmbH", + "ansible_bios_version": "VirtualBox", + "ansible_board_asset_tag": "NA", + "ansible_board_name": "VirtualBox", + "ansible_board_serial": "NA", + "ansible_board_vendor": "Oracle Corporation", + "ansible_board_version": "1.2", + "ansible_chassis_asset_tag": "NA", + "ansible_chassis_serial": "NA", + "ansible_chassis_vendor": "Oracle Corporation", + "ansible_chassis_version": "NA", + "ansible_cmdline": { + "BOOT_IMAGE": "/vmlinuz-5.13.0-22-generic", + "biosdevname": "0", + "net.ifnames": "0", + "ro": true, + "root": "/dev/mapper/ubuntu--vg-ubuntu--lv" + }, + "ansible_date_time": { + "date": "2022-03-08", + "day": "08", + "epoch": "1646732599", + "epoch_int": "1646732599", + "hour": "09", + "iso8601": "2022-03-08T09:43:19Z", + "iso8601_basic": "20220308T094319450693", + "iso8601_basic_short": "20220308T094319", + "iso8601_micro": "2022-03-08T09:43:19.450693Z", + "minute": "43", + "month": "03", + "second": "19", + "time": "09:43:19", + "tz": "UTC", + "tz_dst": "UTC", + "tz_offset": "+0000", + "weekday": "Tuesday", + "weekday_number": "2", + "weeknumber": "10", + "year": "2022" + }, + "ansible_default_ipv4": { + "address": "10.0.2.15", + "alias": "eth0", + "broadcast": "10.0.2.255", + "gateway": "10.0.2.2", + "interface": "eth0", + "macaddress": "08:00:27:ce:58:75", + "mtu": 1500, + "netmask": "255.255.255.0", + "network": "10.0.2.0", + "type": "ether" + }, + "ansible_default_ipv6": {}, + "ansible_device_links": { + "ids": { + "dm-0": [ + "dm-name-ubuntu--vg-ubuntu--lv", + "dm-uuid-LVM-Rh9IL87P5c3bFZDEZsSB1HwoQzIYdJJ9MHC0hk6VL2FQradVhN635nSZ2UK0hIjP" + ], + "sda": [ + "ata-VBOX_HARDDISK_VBcfd14ab3-bc606f3e", + "scsi-0ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e", + "scsi-1ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e", + "scsi-SATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e" + ], + "sda1": [ + "ata-VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part1", + "scsi-0ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part1", + "scsi-1ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part1", + "scsi-SATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part1" + ], + "sda2": [ + "ata-VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part2", + "scsi-0ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part2", + "scsi-1ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part2", + "scsi-SATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part2" + ], + "sda3": [ + "ata-VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part3", + "lvm-pv-uuid-Xe775U-TJap-8U2Y-aVya-vwHl-yIu6-jOcce8", + "scsi-0ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part3", + "scsi-1ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part3", + "scsi-SATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part3" + ] + }, + "labels": {}, + "masters": { + "sda3": [ + "dm-0" + ] + }, + "uuids": { + "dm-0": [ + "e9eefc7d-c837-4b64-9db4-6d35d0c65475" + ], + "sda2": [ + "3262acd9-cc62-4400-82ff-f33a76c3d31c" + ] + } + }, + "ansible_devices": { + "dm-0": { + "holders": [], + "host": "", + "links": { + "ids": [ + "dm-name-ubuntu--vg-ubuntu--lv", + "dm-uuid-LVM-Rh9IL87P5c3bFZDEZsSB1HwoQzIYdJJ9MHC0hk6VL2FQradVhN635nSZ2UK0hIjP" + ], + "labels": [], + "masters": [], + "uuids": [ + "e9eefc7d-c837-4b64-9db4-6d35d0c65475" + ] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "", + "sectors": "66052096", + "sectorsize": "512", + "size": "31.50 GB", + "support_discard": "0", + "vendor": null, + "virtual": 1 + }, + "loop0": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "126632", + "sectorsize": "512", + "size": "61.83 MB", + "support_discard": "4096", + "vendor": null, + "virtual": 1 + }, + "loop1": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "126752", + "sectorsize": "512", + "size": "61.89 MB", + "support_discard": "4096", + "vendor": null, + "virtual": 1 + }, + "loop2": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "149872", + "sectorsize": "512", + "size": "73.18 MB", + "support_discard": "4096", + "vendor": null, + "virtual": 1 + }, + "loop3": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "89264", + "sectorsize": "512", + "size": "43.59 MB", + "support_discard": "4096", + "vendor": null, + "virtual": 1 + }, + "loop4": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "159968", + "sectorsize": "512", + "size": "78.11 MB", + "support_discard": "4096", + "vendor": null, + "virtual": 1 + }, + "loop5": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "0", + "sectorsize": "512", + "size": "0.00 Bytes", + "support_discard": "4096", + "vendor": null, + "virtual": 1 + }, + "loop6": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "0", + "sectorsize": "512", + "size": "0.00 Bytes", + "support_discard": "0", + "vendor": null, + "virtual": 1 + }, + "loop7": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "0", + "sectorsize": "512", + "size": "0.00 Bytes", + "support_discard": "0", + "vendor": null, + "virtual": 1 + }, + "sda": { + "holders": [], + "host": "SATA controller: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode] (rev 02)", + "links": { + "ids": [ + "ata-VBOX_HARDDISK_VBcfd14ab3-bc606f3e", + "scsi-0ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e", + "scsi-1ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e", + "scsi-SATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e" + ], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": "VBOX HARDDISK", + "partitions": { + "sda1": { + "holders": [], + "links": { + "ids": [ + "ata-VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part1", + "scsi-0ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part1", + "scsi-1ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part1", + "scsi-SATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part1" + ], + "labels": [], + "masters": [], + "uuids": [] + }, + "sectors": "2048", + "sectorsize": 512, + "size": "1.00 MB", + "start": "2048", + "uuid": null + }, + "sda2": { + "holders": [], + "links": { + "ids": [ + "ata-VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part2", + "scsi-0ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part2", + "scsi-1ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part2", + "scsi-SATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part2" + ], + "labels": [], + "masters": [], + "uuids": [ + "3262acd9-cc62-4400-82ff-f33a76c3d31c" + ] + }, + "sectors": "2097152", + "sectorsize": 512, + "size": "1.00 GB", + "start": "4096", + "uuid": "3262acd9-cc62-4400-82ff-f33a76c3d31c" + }, + "sda3": { + "holders": [ + "ubuntu--vg-ubuntu--lv" + ], + "links": { + "ids": [ + "ata-VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part3", + "lvm-pv-uuid-Xe775U-TJap-8U2Y-aVya-vwHl-yIu6-jOcce8", + "scsi-0ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part3", + "scsi-1ATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part3", + "scsi-SATA_VBOX_HARDDISK_VBcfd14ab3-bc606f3e-part3" + ], + "labels": [], + "masters": [ + "dm-0" + ], + "uuids": [] + }, + "sectors": "132114432", + "sectorsize": 512, + "size": "63.00 GB", + "start": "2101248", + "uuid": null + } + }, + "removable": "0", + "rotational": "1", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "mq-deadline", + "sectors": "134217728", + "sectorsize": "512", + "size": "64.00 GB", + "support_discard": "0", + "vendor": "ATA", + "virtual": 1 + } + }, + "ansible_distribution": "Ubuntu", + "ansible_distribution_file_parsed": true, + "ansible_distribution_file_path": "/etc/os-release", + "ansible_distribution_file_variety": "Debian", + "ansible_distribution_major_version": "21", + "ansible_distribution_release": "impish", + "ansible_distribution_version": "21.10", + "ansible_dns": { + "nameservers": [ + "127.0.0.53" + ], + "options": { + "edns0": true, + "trust-ad": true + }, + "search": [ + "." + ] + }, + "ansible_domain": "", + "ansible_effective_group_id": 1000, + "ansible_effective_user_id": 1000, + "ansible_env": { + "HOME": "/home/vagrant", + "LANG": "en_US.UTF-8", + "LOGNAME": "vagrant", + "MOTD_SHOWN": "pam", + "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin", + "PWD": "/home/vagrant", + "SHELL": "/bin/bash", + "SHLVL": "0", + "SSH_CLIENT": "192.168.169.5 59559 22", + "SSH_CONNECTION": "192.168.169.5 59559 192.168.169.134 22", + "SSH_TTY": "/dev/pts/0", + "TERM": "xterm-256color", + "USER": "vagrant", + "XDG_RUNTIME_DIR": "/run/user/1000", + "XDG_SESSION_CLASS": "user", + "XDG_SESSION_ID": "31", + "XDG_SESSION_TYPE": "tty", + "_": "/bin/sh" + }, + "ansible_eth0": { + "active": true, + "device": "eth0", + "features": { + "esp_hw_offload": "off [fixed]", + "esp_tx_csum_hw_offload": "off [fixed]", + "fcoe_mtu": "off [fixed]", + "generic_receive_offload": "on", + "generic_segmentation_offload": "on", + "highdma": "off [fixed]", + "hsr_dup_offload": "off [fixed]", + "hsr_fwd_offload": "off [fixed]", + "hsr_tag_ins_offload": "off [fixed]", + "hsr_tag_rm_offload": "off [fixed]", + "hw_tc_offload": "off [fixed]", + "l2_fwd_offload": "off [fixed]", + "large_receive_offload": "off [fixed]", + "loopback": "off [fixed]", + "macsec_hw_offload": "off [fixed]", + "netns_local": "off [fixed]", + "ntuple_filters": "off [fixed]", + "receive_hashing": "off [fixed]", + "rx_all": "off", + "rx_checksumming": "off", + "rx_fcs": "off", + "rx_gro_hw": "off [fixed]", + "rx_gro_list": "off", + "rx_udp_gro_forwarding": "off", + "rx_udp_tunnel_port_offload": "off [fixed]", + "rx_vlan_filter": "on [fixed]", + "rx_vlan_offload": "on", + "rx_vlan_stag_filter": "off [fixed]", + "rx_vlan_stag_hw_parse": "off [fixed]", + "scatter_gather": "on", + "tcp_segmentation_offload": "on", + "tls_hw_record": "off [fixed]", + "tls_hw_rx_offload": "off [fixed]", + "tls_hw_tx_offload": "off [fixed]", + "tx_checksum_fcoe_crc": "off [fixed]", + "tx_checksum_ip_generic": "on", + "tx_checksum_ipv4": "off [fixed]", + "tx_checksum_ipv6": "off [fixed]", + "tx_checksum_sctp": "off [fixed]", + "tx_checksumming": "on", + "tx_esp_segmentation": "off [fixed]", + "tx_fcoe_segmentation": "off [fixed]", + "tx_gre_csum_segmentation": "off [fixed]", + "tx_gre_segmentation": "off [fixed]", + "tx_gso_list": "off [fixed]", + "tx_gso_partial": "off [fixed]", + "tx_gso_robust": "off [fixed]", + "tx_ipxip4_segmentation": "off [fixed]", + "tx_ipxip6_segmentation": "off [fixed]", + "tx_lockless": "off [fixed]", + "tx_nocache_copy": "off", + "tx_scatter_gather": "on", + "tx_scatter_gather_fraglist": "off [fixed]", + "tx_sctp_segmentation": "off [fixed]", + "tx_tcp6_segmentation": "off [fixed]", + "tx_tcp_ecn_segmentation": "off [fixed]", + "tx_tcp_mangleid_segmentation": "off", + "tx_tcp_segmentation": "on", + "tx_tunnel_remcsum_segmentation": "off [fixed]", + "tx_udp_segmentation": "off [fixed]", + "tx_udp_tnl_csum_segmentation": "off [fixed]", + "tx_udp_tnl_segmentation": "off [fixed]", + "tx_vlan_offload": "on [fixed]", + "tx_vlan_stag_hw_insert": "off [fixed]", + "vlan_challenged": "off [fixed]" + }, + "hw_timestamp_filters": [], + "ipv4": { + "address": "10.0.2.15", + "broadcast": "10.0.2.255", + "netmask": "255.255.255.0", + "network": "10.0.2.0" + }, + "ipv6": [ + { + "address": "fe80::a00:27ff:fece:5875", + "prefix": "64", + "scope": "link" + } + ], + "macaddress": "08:00:27:ce:58:75", + "module": "e1000", + "mtu": 1500, + "pciid": "0000:00:03.0", + "promisc": false, + "speed": 1000, + "timestamping": [], + "type": "ether" + }, + "ansible_eth1": { + "active": true, + "device": "eth1", + "features": { + "esp_hw_offload": "off [fixed]", + "esp_tx_csum_hw_offload": "off [fixed]", + "fcoe_mtu": "off [fixed]", + "generic_receive_offload": "on", + "generic_segmentation_offload": "on", + "highdma": "off [fixed]", + "hsr_dup_offload": "off [fixed]", + "hsr_fwd_offload": "off [fixed]", + "hsr_tag_ins_offload": "off [fixed]", + "hsr_tag_rm_offload": "off [fixed]", + "hw_tc_offload": "off [fixed]", + "l2_fwd_offload": "off [fixed]", + "large_receive_offload": "off [fixed]", + "loopback": "off [fixed]", + "macsec_hw_offload": "off [fixed]", + "netns_local": "off [fixed]", + "ntuple_filters": "off [fixed]", + "receive_hashing": "off [fixed]", + "rx_all": "off", + "rx_checksumming": "off", + "rx_fcs": "off", + "rx_gro_hw": "off [fixed]", + "rx_gro_list": "off", + "rx_udp_gro_forwarding": "off", + "rx_udp_tunnel_port_offload": "off [fixed]", + "rx_vlan_filter": "on [fixed]", + "rx_vlan_offload": "on", + "rx_vlan_stag_filter": "off [fixed]", + "rx_vlan_stag_hw_parse": "off [fixed]", + "scatter_gather": "on", + "tcp_segmentation_offload": "on", + "tls_hw_record": "off [fixed]", + "tls_hw_rx_offload": "off [fixed]", + "tls_hw_tx_offload": "off [fixed]", + "tx_checksum_fcoe_crc": "off [fixed]", + "tx_checksum_ip_generic": "on", + "tx_checksum_ipv4": "off [fixed]", + "tx_checksum_ipv6": "off [fixed]", + "tx_checksum_sctp": "off [fixed]", + "tx_checksumming": "on", + "tx_esp_segmentation": "off [fixed]", + "tx_fcoe_segmentation": "off [fixed]", + "tx_gre_csum_segmentation": "off [fixed]", + "tx_gre_segmentation": "off [fixed]", + "tx_gso_list": "off [fixed]", + "tx_gso_partial": "off [fixed]", + "tx_gso_robust": "off [fixed]", + "tx_ipxip4_segmentation": "off [fixed]", + "tx_ipxip6_segmentation": "off [fixed]", + "tx_lockless": "off [fixed]", + "tx_nocache_copy": "off", + "tx_scatter_gather": "on", + "tx_scatter_gather_fraglist": "off [fixed]", + "tx_sctp_segmentation": "off [fixed]", + "tx_tcp6_segmentation": "off [fixed]", + "tx_tcp_ecn_segmentation": "off [fixed]", + "tx_tcp_mangleid_segmentation": "off", + "tx_tcp_segmentation": "on", + "tx_tunnel_remcsum_segmentation": "off [fixed]", + "tx_udp_segmentation": "off [fixed]", + "tx_udp_tnl_csum_segmentation": "off [fixed]", + "tx_udp_tnl_segmentation": "off [fixed]", + "tx_vlan_offload": "on [fixed]", + "tx_vlan_stag_hw_insert": "off [fixed]", + "vlan_challenged": "off [fixed]" + }, + "hw_timestamp_filters": [], + "ipv4": { + "address": "192.168.169.134", + "broadcast": "192.168.169.255", + "netmask": "255.255.255.0", + "network": "192.168.169.0" + }, + "ipv6": [ + { + "address": "fe80::a00:27ff:fe58:d805", + "prefix": "64", + "scope": "link" + } + ], + "macaddress": "08:00:27:58:d8:05", + "module": "e1000", + "mtu": 1500, + "pciid": "0000:00:08.0", + "promisc": false, + "speed": 1000, + "timestamping": [], + "type": "ether" + }, + "ansible_fibre_channel_wwn": [], + "ansible_fips": false, + "ansible_form_factor": "Other", + "ansible_fqdn": "loadbalancer", + "ansible_hostname": "loadbalancer", + "ansible_hostnqn": "", + "ansible_interfaces": [ + "eth0", + "lo", + "eth1" + ], + "ansible_is_chroot": false, + "ansible_iscsi_iqn": "", + "ansible_kernel": "5.13.0-22-generic", + "ansible_kernel_version": "#22-Ubuntu SMP Fri Nov 5 13:21:36 UTC 2021", + "ansible_lo": { + "active": true, + "device": "lo", + "features": { + "esp_hw_offload": "off [fixed]", + "esp_tx_csum_hw_offload": "off [fixed]", + "fcoe_mtu": "off [fixed]", + "generic_receive_offload": "on", + "generic_segmentation_offload": "on", + "highdma": "on [fixed]", + "hsr_dup_offload": "off [fixed]", + "hsr_fwd_offload": "off [fixed]", + "hsr_tag_ins_offload": "off [fixed]", + "hsr_tag_rm_offload": "off [fixed]", + "hw_tc_offload": "off [fixed]", + "l2_fwd_offload": "off [fixed]", + "large_receive_offload": "off [fixed]", + "loopback": "on [fixed]", + "macsec_hw_offload": "off [fixed]", + "netns_local": "on [fixed]", + "ntuple_filters": "off [fixed]", + "receive_hashing": "off [fixed]", + "rx_all": "off [fixed]", + "rx_checksumming": "on [fixed]", + "rx_fcs": "off [fixed]", + "rx_gro_hw": "off [fixed]", + "rx_gro_list": "off", + "rx_udp_gro_forwarding": "off", + "rx_udp_tunnel_port_offload": "off [fixed]", + "rx_vlan_filter": "off [fixed]", + "rx_vlan_offload": "off [fixed]", + "rx_vlan_stag_filter": "off [fixed]", + "rx_vlan_stag_hw_parse": "off [fixed]", + "scatter_gather": "on", + "tcp_segmentation_offload": "on", + "tls_hw_record": "off [fixed]", + "tls_hw_rx_offload": "off [fixed]", + "tls_hw_tx_offload": "off [fixed]", + "tx_checksum_fcoe_crc": "off [fixed]", + "tx_checksum_ip_generic": "on [fixed]", + "tx_checksum_ipv4": "off [fixed]", + "tx_checksum_ipv6": "off [fixed]", + "tx_checksum_sctp": "on [fixed]", + "tx_checksumming": "on", + "tx_esp_segmentation": "off [fixed]", + "tx_fcoe_segmentation": "off [fixed]", + "tx_gre_csum_segmentation": "off [fixed]", + "tx_gre_segmentation": "off [fixed]", + "tx_gso_list": "on", + "tx_gso_partial": "off [fixed]", + "tx_gso_robust": "off [fixed]", + "tx_ipxip4_segmentation": "off [fixed]", + "tx_ipxip6_segmentation": "off [fixed]", + "tx_lockless": "on [fixed]", + "tx_nocache_copy": "off [fixed]", + "tx_scatter_gather": "on [fixed]", + "tx_scatter_gather_fraglist": "on [fixed]", + "tx_sctp_segmentation": "on", + "tx_tcp6_segmentation": "on", + "tx_tcp_ecn_segmentation": "on", + "tx_tcp_mangleid_segmentation": "on", + "tx_tcp_segmentation": "on", + "tx_tunnel_remcsum_segmentation": "off [fixed]", + "tx_udp_segmentation": "on", + "tx_udp_tnl_csum_segmentation": "off [fixed]", + "tx_udp_tnl_segmentation": "off [fixed]", + "tx_vlan_offload": "off [fixed]", + "tx_vlan_stag_hw_insert": "off [fixed]", + "vlan_challenged": "on [fixed]" + }, + "hw_timestamp_filters": [], + "ipv4": { + "address": "127.0.0.1", + "broadcast": "", + "netmask": "255.0.0.0", + "network": "127.0.0.0" + }, + "ipv6": [ + { + "address": "::1", + "prefix": "128", + "scope": "host" + } + ], + "mtu": 65536, + "promisc": false, + "timestamping": [], + "type": "loopback" + }, + "ansible_local": {}, + "ansible_lsb": { + "codename": "impish", + "description": "Ubuntu 21.10", + "id": "Ubuntu", + "major_release": "21", + "release": "21.10" + }, + "ansible_machine": "x86_64", + "ansible_machine_id": "eb914f2b9b20452a9f22409ce7e2504b", + "ansible_memfree_mb": 794, + "ansible_memory_mb": { + "nocache": { + "free": 1756, + "used": 221 + }, + "real": { + "free": 794, + "total": 1977, + "used": 1183 + }, + "swap": { + "cached": 0, + "free": 1941, + "total": 1941, + "used": 0 + } + }, + "ansible_memtotal_mb": 1977, + "ansible_mounts": [ + { + "block_available": 6449622, + "block_size": 4096, + "block_total": 8081868, + "block_used": 1632246, + "device": "/dev/mapper/ubuntu--vg-ubuntu--lv", + "fstype": "ext4", + "inode_available": 1980785, + "inode_total": 2064384, + "inode_used": 83599, + "mount": "/", + "options": "rw,relatime", + "size_available": 26417651712, + "size_total": 33103331328, + "uuid": "e9eefc7d-c837-4b64-9db4-6d35d0c65475" + }, + { + "block_available": 0, + "block_size": 131072, + "block_total": 495, + "block_used": 495, + "device": "/dev/loop0", + "fstype": "squashfs", + "inode_available": 0, + "inode_total": 11732, + "inode_used": 11732, + "mount": "/snap/core20/1169", + "options": "ro,nodev,relatime", + "size_available": 0, + "size_total": 64880640, + "uuid": "N/A" + }, + { + "block_available": 0, + "block_size": 131072, + "block_total": 349, + "block_used": 349, + "device": "/dev/loop3", + "fstype": "squashfs", + "inode_available": 0, + "inode_total": 480, + "inode_used": 480, + "mount": "/snap/snapd/14978", + "options": "ro,nodev,relatime", + "size_available": 0, + "size_total": 45744128, + "uuid": "N/A" + }, + { + "block_available": 0, + "block_size": 131072, + "block_total": 496, + "block_used": 496, + "device": "/dev/loop1", + "fstype": "squashfs", + "inode_available": 0, + "inode_total": 11777, + "inode_used": 11777, + "mount": "/snap/core20/1361", + "options": "ro,nodev,relatime", + "size_available": 0, + "size_total": 65011712, + "uuid": "N/A" + }, + { + "block_available": 0, + "block_size": 131072, + "block_total": 586, + "block_used": 586, + "device": "/dev/loop2", + "fstype": "squashfs", + "inode_available": 0, + "inode_total": 806, + "inode_used": 806, + "mount": "/snap/lxd/21624", + "options": "ro,nodev,relatime", + "size_available": 0, + "size_total": 76808192, + "uuid": "N/A" + }, + { + "block_available": 0, + "block_size": 131072, + "block_total": 625, + "block_used": 625, + "device": "/dev/loop4", + "fstype": "squashfs", + "inode_available": 0, + "inode_total": 812, + "inode_used": 812, + "mount": "/snap/lxd/22525", + "options": "ro,nodev,relatime", + "size_available": 0, + "size_total": 81920000, + "uuid": "N/A" + }, + { + "block_available": 216388, + "block_size": 4096, + "block_total": 249195, + "block_used": 32807, + "device": "/dev/sda2", + "fstype": "ext4", + "inode_available": 65224, + "inode_total": 65536, + "inode_used": 312, + "mount": "/boot", + "options": "rw,relatime", + "size_available": 886325248, + "size_total": 1020702720, + "uuid": "3262acd9-cc62-4400-82ff-f33a76c3d31c" + } + ], + "ansible_nodename": "loadbalancer", + "ansible_os_family": "Debian", + "ansible_pkg_mgr": "apt", + "ansible_proc_cmdline": { + "BOOT_IMAGE": "/vmlinuz-5.13.0-22-generic", + "biosdevname": "0", + "net.ifnames": "0", + "ro": true, + "root": "/dev/mapper/ubuntu--vg-ubuntu--lv" + }, + "ansible_processor": [ + "0", + "GenuineIntel", + "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", + "1", + "GenuineIntel", + "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz" + ], + "ansible_processor_cores": 2, + "ansible_processor_count": 1, + "ansible_processor_nproc": 2, + "ansible_processor_threads_per_core": 1, + "ansible_processor_vcpus": 2, + "ansible_product_name": "VirtualBox", + "ansible_product_serial": "NA", + "ansible_product_uuid": "NA", + "ansible_product_version": "1.2", + "ansible_python": { + "executable": "/usr/bin/python3", + "has_sslcontext": true, + "type": "cpython", + "version": { + "major": 3, + "micro": 7, + "minor": 9, + "releaselevel": "final", + "serial": 0 + }, + "version_info": [ + 3, + 9, + 7, + "final", + 0 + ] + }, + "ansible_python_version": "3.9.7", + "ansible_real_group_id": 1000, + "ansible_real_user_id": 1000, + "ansible_selinux": { + "status": "disabled" + }, + "ansible_selinux_python_present": true, + "ansible_service_mgr": "systemd", + "ansible_ssh_host_key_dsa_public": "AAAAB3NzaC1kc3MAAACBAJ/GYOfI+NDvgal1rxFqdD/Hjgb3jhhUq+qvNksPruSyGWFsOkC4XDgyx5OrYVwsSvQSp4qPQx2TW9WYE2BD+l+3cxib9hUpSHwUeTlnwG/6cYsBk5Lqffb/MioGX6Prc1K266ffCdgm3RceU8YO5KsVVwS9aGy/U/IofP9MQRfdAAAAFQC5vkDdPiES73kNWkN0pkVGhaiH6QAAAIBLMS/ZaVwN/8HOvAlY3lrvokz82tG/+9p+Ud16n2kVJZoYkS0d7w8oY401K+A46iQXKaxHnK/+yIGLThSKWUSd5ogiJqIcm5A3KrQd9OLHS/hrInQHaBauAqjB1/RvbVfqZxR6zKk0HLqKLQy2pOqXTxgiKBynYTKPQfVsh9O63wAAAIBD1pHD6w3piWVsZx4X29PGdERBXN9JRBqBYc6yJ3wVE0zNUQDcHEzFvxfyvrxqZLCzZU3pnOWEIAPG/VIE3UYcuMEBsgVQuDeMLosVf3jh20NwdafU/7wqUYIbuscBZjQedtjerKsvxLpbkOhIOrKCf3uwgbmty9Nu2cRsynS8Sw==", + "ansible_ssh_host_key_dsa_public_keytype": "ssh-dss", + "ansible_ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBA7DyFPFXiwKxtwKifbCQfzbY28EHSs1z6PGK112JuJZVY4AmjehzREF2xX8WcfH3OJez92UWbedRuc3h5ffj14=", + "ansible_ssh_host_key_ecdsa_public_keytype": "ecdsa-sha2-nistp256", + "ansible_ssh_host_key_ed25519_public": "AAAAC3NzaC1lZDI1NTE5AAAAIBFl4qPZy972bH4Nq4iaE2X5FhGF9zdEG7gxdx/twPar", + "ansible_ssh_host_key_ed25519_public_keytype": "ssh-ed25519", + "ansible_ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABgQC7D6r/j7LOBo0UncMQUUZSwKQeKiewp0YRkmU8/NqUrgLFwMTZWEpFJuWDVOtc1rCILj+LXtjTRzn2fSOBz2f3Hkf7Rj3SGAM1FSXcYkL3Wb/Zwiek6CegHby/SZYLNDMwPjV7mC9d1TpSBVQvrOTGMx8f/swBieNq7lEjM5bbCJS78wLc5Efqg3pTADz9CLhDDdRo8vEhmz/bd/WbSRNchvSZkvOIs3o2NEs+wQ3WOlOrq2wA7tSEhzeIWtZ3FK2XdxRQ7HXTMFw1Tskm2LcY/Oc082n/LvYLiM4tfRbtiV1dPv3UVRJVd6M+xsdaCynS6pKbXxwtfnKA3hvgD+WBYsbDtryVW7ZWPmqfxXe22FhAPecQ044WaDcQvZFbpK/CeGNwURMrSNdbY8uEhfWnvVWPSucZrdoTR3htl/PUTDZMJiyA9NjxqLYt/5PsySMGpcQDWFK0+woh/c1rdwDaE9yriXRUsMkLdfEtAdiKEin9HjeDkeOjVg26jn/AjBk=", + "ansible_ssh_host_key_rsa_public_keytype": "ssh-rsa", + "ansible_swapfree_mb": 1941, + "ansible_swaptotal_mb": 1941, + "ansible_system": "Linux", + "ansible_system_capabilities": [ + "" + ], + "ansible_system_capabilities_enforced": "True", + "ansible_system_vendor": "innotek GmbH", + "ansible_uptime_seconds": 58379, + "ansible_user_dir": "/home/vagrant", + "ansible_user_gecos": "vagrant", + "ansible_user_gid": 1000, + "ansible_user_id": "vagrant", + "ansible_user_shell": "/bin/bash", + "ansible_user_uid": 1000, + "ansible_userspace_architecture": "x86_64", + "ansible_userspace_bits": "64", + "ansible_virtualization_role": "guest", + "ansible_virtualization_tech_guest": [ + "virtualbox" + ], + "ansible_virtualization_tech_host": [], + "ansible_virtualization_type": "virtualbox", + "discovered_interpreter_python": "/usr/bin/python3", + "gather_subset": [ + "all" + ], + "module_setup": true + }, + "changed": false +} diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/mysite.j2 b/2022/tr/Days/Configmgmt/ansible-scenario5/mysite.j2 new file mode 100644 index 0000000..2eb2ecd --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/mysite.j2 @@ -0,0 +1,14 @@ +#Dynamic Config for server {{ ansible_facts['nodename'] }} + upstream webservers { + {% for host in groups['webservers'] %} + server {{ hostvars[host]['ansible_facts']['nodename'] }}:8000; + {% endfor %} + } + + server { + listen 80; + + location / { + proxy_pass http://webservers; + } + } \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/playbook5.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/playbook5.yml new file mode 100644 index 0000000..4195725 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/playbook5.yml @@ -0,0 +1,17 @@ +- hosts: webservers + become: yes + vars: + http_port: 8000 + https_port: 4443 + html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!" + roles: + - common + - apache2 + tags: web + +- hosts: proxy + become: yes + roles: + - common + - nginx + tags: proxy \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/.travis.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/.travis.yml new file mode 100644 index 0000000..36bbf62 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/.travis.yml @@ -0,0 +1,29 @@ +--- +language: python +python: "2.7" + +# Use the new container infrastructure +sudo: false + +# Install ansible +addons: + apt: + packages: + - python-pip + +install: + # Install ansible + - pip install ansible + + # Check ansible version + - ansible --version + + # Create ansible.cfg with correct roles_path + - printf '[defaults]\nroles_path=../' >ansible.cfg + +script: + # Basic role syntax check + - ansible-playbook tests/test.yml -i tests/inventory --syntax-check + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/README.md b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/defaults/main.yml new file mode 100644 index 0000000..118c758 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/handlers/main.yml new file mode 100644 index 0000000..ff3da8d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/handlers/main.yml @@ -0,0 +1,4 @@ +- name: restart apache + service: + name: apache2 + state: restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/apache2_install.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 0000000..c75b06b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/apache2_install.yml @@ -0,0 +1,18 @@ +- name: ensure apache is at the latest version + apt: name=apache2 state=latest + +- name: write the apache2 ports.conf config file + template: src=templates/ports.conf.j2 dest=/etc/apache2/ports.conf + notify: restart apache + +- name: write a basic index.html file + template: + src: templates/index.html.j2 + dest: /var/www/html/index.html + notify: + - restart apache + +- name: ensure apache is running + service: + name: apache2 + state: started \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/main.yml new file mode 100644 index 0000000..6024204 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/apache2 +- import_tasks: apache2_install.yml diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/index.html.j2 b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/index.html.j2 new file mode 100644 index 0000000..acdefbe --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}

+ + \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/ports.conf.j2 b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 0000000..1793522 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/ports.conf.j2 @@ -0,0 +1,16 @@ + +# If you just change the port or add more ports here, you will likely also +# have to change the VirtualHost statement in +# /etc/apache2/sites-enabled/000-default.conf + +Listen {{ http_port }} + + + Listen {{ https_port }} + + + + Listen {{ https_port }} + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/test.yml new file mode 100644 index 0000000..716bef3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/vars/main.yml new file mode 100644 index 0000000..d34faf4 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/defaults/main.yml new file mode 100644 index 0000000..28cf403 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/handlers/main.yml new file mode 100644 index 0000000..d29b8e9 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tasks/install_tools.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tasks/install_tools.yml new file mode 100644 index 0000000..653bf95 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tasks/install_tools.yml @@ -0,0 +1,6 @@ +- name: "Install Common packages" + apt: name={{ item }} state=latest + with_items: + - neofetch + - tree + - figlet \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tasks/main.yml new file mode 100644 index 0000000..0f9c34d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/common +- import_tasks: install_tools.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tests/test.yml new file mode 100644 index 0000000..1cbebf5 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/vars/main.yml new file mode 100644 index 0000000..f83eed7 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/common/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/defaults/main.yml new file mode 100644 index 0000000..a28e129 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/handlers/main.yml new file mode 100644 index 0000000..494b444 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/handlers/main.yml @@ -0,0 +1,4 @@ +--- +# handlers file for roles/nginx +- name: restart nginx + service: name=nginx state=restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/configure_nginx.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/configure_nginx.yml new file mode 100644 index 0000000..66e02d3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/configure_nginx.yml @@ -0,0 +1,8 @@ +- name: Deploy Nginx sites configuration + template: + src: mysite.j2 + dest: "/etc/nginx/sites-enabled/mysite" + notify: restart nginx + +- name: Remove defaults + file: path="/etc/nginx/sites-enabled/default" state=absent \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/install_packages.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/install_packages.yml new file mode 100644 index 0000000..7feeda8 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/install_packages.yml @@ -0,0 +1,4 @@ +- name: "Install Nginx packages" + apt: + name: nginx + state: present \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/main.yml new file mode 100644 index 0000000..abb54a9 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/main.yml @@ -0,0 +1,4 @@ +--- +# tasks file for roles/nginx +- import_tasks: install_packages.yml +- import_tasks: configure_nginx.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/templates/mysite.j2 b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/templates/mysite.j2 new file mode 100644 index 0000000..7c7f562 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/templates/mysite.j2 @@ -0,0 +1,12 @@ + upstream webservers { + server 192.168.169.131:8000; + server 192.168.169.132:8000; + } + + server { + listen 80; + + location / { + proxy_pass http://webservers; + } + } diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/test.yml new file mode 100644 index 0000000..6750534 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/vars/main.yml new file mode 100644 index 0000000..4d5dfe2 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario5/roles/nginx/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/group_vars/all/common_variables.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/group_vars/all/common_variables.yml new file mode 100644 index 0000000..6e530d0 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/group_vars/all/common_variables.yml @@ -0,0 +1,3 @@ +http_port: 8000 +https_port: 4443 +html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 68!" diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/playbook6.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/playbook6.yml new file mode 100644 index 0000000..f542830 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/playbook6.yml @@ -0,0 +1,13 @@ +- hosts: webservers + become: yes + roles: + - common + - apache2 + tags: web + +- hosts: proxy + become: yes + roles: + - common + - nginx + tags: proxy \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/.travis.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/.travis.yml new file mode 100644 index 0000000..36bbf62 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/.travis.yml @@ -0,0 +1,29 @@ +--- +language: python +python: "2.7" + +# Use the new container infrastructure +sudo: false + +# Install ansible +addons: + apt: + packages: + - python-pip + +install: + # Install ansible + - pip install ansible + + # Check ansible version + - ansible --version + + # Create ansible.cfg with correct roles_path + - printf '[defaults]\nroles_path=../' >ansible.cfg + +script: + # Basic role syntax check + - ansible-playbook tests/test.yml -i tests/inventory --syntax-check + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/README.md b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/defaults/main.yml new file mode 100644 index 0000000..118c758 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/handlers/main.yml new file mode 100644 index 0000000..ff3da8d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/handlers/main.yml @@ -0,0 +1,4 @@ +- name: restart apache + service: + name: apache2 + state: restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/apache2_install.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 0000000..c75b06b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/apache2_install.yml @@ -0,0 +1,18 @@ +- name: ensure apache is at the latest version + apt: name=apache2 state=latest + +- name: write the apache2 ports.conf config file + template: src=templates/ports.conf.j2 dest=/etc/apache2/ports.conf + notify: restart apache + +- name: write a basic index.html file + template: + src: templates/index.html.j2 + dest: /var/www/html/index.html + notify: + - restart apache + +- name: ensure apache is running + service: + name: apache2 + state: started \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/main.yml new file mode 100644 index 0000000..6024204 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/apache2 +- import_tasks: apache2_install.yml diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/index.html.j2 b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/index.html.j2 new file mode 100644 index 0000000..efa5095 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}! I'm webserver {{ ansible_facts['nodename'] }}

+ + \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/ports.conf.j2 b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 0000000..1793522 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/ports.conf.j2 @@ -0,0 +1,16 @@ + +# If you just change the port or add more ports here, you will likely also +# have to change the VirtualHost statement in +# /etc/apache2/sites-enabled/000-default.conf + +Listen {{ http_port }} + + + Listen {{ https_port }} + + + + Listen {{ https_port }} + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/test.yml new file mode 100644 index 0000000..716bef3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/vars/main.yml new file mode 100644 index 0000000..d34faf4 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/defaults/main.yml new file mode 100644 index 0000000..28cf403 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/handlers/main.yml new file mode 100644 index 0000000..d29b8e9 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tasks/install_tools.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tasks/install_tools.yml new file mode 100644 index 0000000..653bf95 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tasks/install_tools.yml @@ -0,0 +1,6 @@ +- name: "Install Common packages" + apt: name={{ item }} state=latest + with_items: + - neofetch + - tree + - figlet \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tasks/main.yml new file mode 100644 index 0000000..0f9c34d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/common +- import_tasks: install_tools.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tests/test.yml new file mode 100644 index 0000000..1cbebf5 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/vars/main.yml new file mode 100644 index 0000000..f83eed7 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/common/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/defaults/main.yml new file mode 100644 index 0000000..a28e129 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/handlers/main.yml new file mode 100644 index 0000000..494b444 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/handlers/main.yml @@ -0,0 +1,4 @@ +--- +# handlers file for roles/nginx +- name: restart nginx + service: name=nginx state=restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/configure_nginx.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/configure_nginx.yml new file mode 100644 index 0000000..66e02d3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/configure_nginx.yml @@ -0,0 +1,8 @@ +- name: Deploy Nginx sites configuration + template: + src: mysite.j2 + dest: "/etc/nginx/sites-enabled/mysite" + notify: restart nginx + +- name: Remove defaults + file: path="/etc/nginx/sites-enabled/default" state=absent \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/install_packages.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/install_packages.yml new file mode 100644 index 0000000..7feeda8 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/install_packages.yml @@ -0,0 +1,4 @@ +- name: "Install Nginx packages" + apt: + name: nginx + state: present \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/main.yml new file mode 100644 index 0000000..abb54a9 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/main.yml @@ -0,0 +1,4 @@ +--- +# tasks file for roles/nginx +- import_tasks: install_packages.yml +- import_tasks: configure_nginx.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/templates/mysite.j2 b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/templates/mysite.j2 new file mode 100644 index 0000000..ec5499d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/templates/mysite.j2 @@ -0,0 +1,14 @@ +#Dynamic Config for server {{ ansible_facts['nodename'] }} + upstream webservers { + {% for host in groups['webservers'] %} + server {{ hostvars[host]['ansible_facts']['nodename'] }}:{{ http_port }}; + {% endfor %} + } + + server { + listen 80; + + location / { + proxy_pass http://webservers; + } + } \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/test.yml new file mode 100644 index 0000000..6750534 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/vars/main.yml new file mode 100644 index 0000000..4d5dfe2 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario6/roles/nginx/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/group_vars/all/common_variables.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/group_vars/all/common_variables.yml new file mode 100644 index 0000000..9882bfa --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/group_vars/all/common_variables.yml @@ -0,0 +1,9 @@ +http_port: 8000 +https_port: 4443 +html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 68!" + +mysql_user_name: root +mysql_user_password: vagrant +db_user: devops +db_pass: DevOps90 +db_name: 90DaysOfDevOps diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/playbook7.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/playbook7.yml new file mode 100644 index 0000000..18ab437 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/playbook7.yml @@ -0,0 +1,22 @@ +- hosts: webservers + become: yes + roles: + - common + - apache2 + tags: + web + +- hosts: proxy + become: yes + roles: + - common + - nginx + tags: + proxy + +- hosts: database + become: yes + roles: + - common + - mysql + tags: database \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/.travis.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/.travis.yml new file mode 100644 index 0000000..36bbf62 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/.travis.yml @@ -0,0 +1,29 @@ +--- +language: python +python: "2.7" + +# Use the new container infrastructure +sudo: false + +# Install ansible +addons: + apt: + packages: + - python-pip + +install: + # Install ansible + - pip install ansible + + # Check ansible version + - ansible --version + + # Create ansible.cfg with correct roles_path + - printf '[defaults]\nroles_path=../' >ansible.cfg + +script: + # Basic role syntax check + - ansible-playbook tests/test.yml -i tests/inventory --syntax-check + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/README.md b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/defaults/main.yml new file mode 100644 index 0000000..118c758 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/handlers/main.yml new file mode 100644 index 0000000..ff3da8d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/handlers/main.yml @@ -0,0 +1,4 @@ +- name: restart apache + service: + name: apache2 + state: restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/apache2_install.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 0000000..c75b06b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/apache2_install.yml @@ -0,0 +1,18 @@ +- name: ensure apache is at the latest version + apt: name=apache2 state=latest + +- name: write the apache2 ports.conf config file + template: src=templates/ports.conf.j2 dest=/etc/apache2/ports.conf + notify: restart apache + +- name: write a basic index.html file + template: + src: templates/index.html.j2 + dest: /var/www/html/index.html + notify: + - restart apache + +- name: ensure apache is running + service: + name: apache2 + state: started \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/main.yml new file mode 100644 index 0000000..6024204 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/apache2 +- import_tasks: apache2_install.yml diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/index.html.j2 b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/index.html.j2 new file mode 100644 index 0000000..efa5095 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}! I'm webserver {{ ansible_facts['nodename'] }}

+ + \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/ports.conf.j2 b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 0000000..1793522 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/ports.conf.j2 @@ -0,0 +1,16 @@ + +# If you just change the port or add more ports here, you will likely also +# have to change the VirtualHost statement in +# /etc/apache2/sites-enabled/000-default.conf + +Listen {{ http_port }} + + + Listen {{ https_port }} + + + + Listen {{ https_port }} + + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/test.yml new file mode 100644 index 0000000..716bef3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/vars/main.yml new file mode 100644 index 0000000..d34faf4 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/defaults/main.yml new file mode 100644 index 0000000..28cf403 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/handlers/main.yml new file mode 100644 index 0000000..d29b8e9 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tasks/install_tools.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tasks/install_tools.yml new file mode 100644 index 0000000..653bf95 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tasks/install_tools.yml @@ -0,0 +1,6 @@ +- name: "Install Common packages" + apt: name={{ item }} state=latest + with_items: + - neofetch + - tree + - figlet \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tasks/main.yml new file mode 100644 index 0000000..0f9c34d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tasks/main.yml @@ -0,0 +1,3 @@ +--- +# tasks file for roles/common +- import_tasks: install_tools.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tests/test.yml new file mode 100644 index 0000000..1cbebf5 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/vars/main.yml new file mode 100644 index 0000000..f83eed7 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/common/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/common diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/README.md b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/defaults/main.yml new file mode 100644 index 0000000..b821cb8 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/mysql \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/handlers/main.yml new file mode 100644 index 0000000..156f895 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/handlers/main.yml @@ -0,0 +1,6 @@ +--- +# handlers file for roles/mysql +- name: restart mysql + service: + name: mysql + state: restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/meta/main.yml new file mode 100644 index 0000000..227ad9c --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/meta/main.yml @@ -0,0 +1,53 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.9 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. + \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/install_mysql.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/install_mysql.yml new file mode 100644 index 0000000..e6d66b1 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/install_mysql.yml @@ -0,0 +1,19 @@ +- name: "Install Common packages" + apt: name={{ item }} state=latest + with_items: + - python3-pip + - mysql-client + - python3-mysqldb + - libmysqlclient-dev + +- name: Ensure mysql-server is installed latest version + apt: name=mysql-server state=latest + +- name: Installing python module MySQL-python + pip: + name: PyMySQL + +- name: Ensure mysql-server is running + service: + name: mysql + state: started diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/main.yml new file mode 100644 index 0000000..51170ae --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/main.yml @@ -0,0 +1,4 @@ +--- +# tasks file for roles/mysql +- import_tasks: install_mysql.yml +- import_tasks: setup_mysql.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/setup_mysql.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/setup_mysql.yml new file mode 100644 index 0000000..ce2dac1 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/setup_mysql.yml @@ -0,0 +1,30 @@ +- name: Create my.cnf configuration file + template: src=templates/my.cnf.j2 dest=/etc/mysql/conf.d/mysql.cnf + notify: restart mysql + +- name: Create database user with name 'devops' and password 'DevOps90' with all database privileges + community.mysql.mysql_user: + login_unix_socket: /var/run/mysqld/mysqld.sock + login_user: "{{ mysql_user_name }}" + login_password: "{{ mysql_user_password }}" + name: "{{db_user}}" + password: "{{db_pass}}" + priv: '*.*:ALL,GRANT' + host: '%' + state: present + +- name: Create a new database with name '90daysofdevops' + mysql_db: + login_user: "{{ db_user }}" + login_password: "{{ db_pass }}" + name: "{{ db_name }}" + state: present + +- name: Enable remote login to mysql + lineinfile: + path: /etc/mysql/mysql.conf.d/mysqld.cnf + regexp: '^bind-address' + line: 'bind-address = 0.0.0.0' + backup: yes + notify: + - Restart mysql \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/templates/my.cnf.j2 b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/templates/my.cnf.j2 new file mode 100644 index 0000000..b4a65fd --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/templates/my.cnf.j2 @@ -0,0 +1,5 @@ +[mysql] +bind-address = 0.0.0.0 +[client] +user=root +password=vagrant \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/test.yml new file mode 100644 index 0000000..56f6b9c --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/mysql \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/vars/main.yml new file mode 100644 index 0000000..d8f8f40 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/mysql/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/mysql \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/defaults/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/defaults/main.yml new file mode 100644 index 0000000..a28e129 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/handlers/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/handlers/main.yml new file mode 100644 index 0000000..494b444 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/handlers/main.yml @@ -0,0 +1,4 @@ +--- +# handlers file for roles/nginx +- name: restart nginx + service: name=nginx state=restarted \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/meta/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/meta/main.yml new file mode 100644 index 0000000..c572acc --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/meta/main.yml @@ -0,0 +1,52 @@ +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + # + # Provide a list of supported platforms, and for each platform a list of versions. + # If you don't wish to enumerate all versions for a particular platform, use 'all'. + # To view available platforms and versions (or releases), visit: + # https://galaxy.ansible.com/api/v1/platforms/ + # + # platforms: + # - name: Fedora + # versions: + # - all + # - 25 + # - name: SomePlatform + # versions: + # - all + # - 1.0 + # - 7 + # - 99.99 + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/configure_nginx.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/configure_nginx.yml new file mode 100644 index 0000000..66e02d3 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/configure_nginx.yml @@ -0,0 +1,8 @@ +- name: Deploy Nginx sites configuration + template: + src: mysite.j2 + dest: "/etc/nginx/sites-enabled/mysite" + notify: restart nginx + +- name: Remove defaults + file: path="/etc/nginx/sites-enabled/default" state=absent \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/install_packages.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/install_packages.yml new file mode 100644 index 0000000..7feeda8 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/install_packages.yml @@ -0,0 +1,4 @@ +- name: "Install Nginx packages" + apt: + name: nginx + state: present \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/main.yml new file mode 100644 index 0000000..abb54a9 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/main.yml @@ -0,0 +1,4 @@ +--- +# tasks file for roles/nginx +- import_tasks: install_packages.yml +- import_tasks: configure_nginx.yml \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/templates/mysite.j2 b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/templates/mysite.j2 new file mode 100644 index 0000000..ec5499d --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/templates/mysite.j2 @@ -0,0 +1,14 @@ +#Dynamic Config for server {{ ansible_facts['nodename'] }} + upstream webservers { + {% for host in groups['webservers'] %} + server {{ hostvars[host]['ansible_facts']['nodename'] }}:{{ http_port }}; + {% endfor %} + } + + server { + listen 80; + + location / { + proxy_pass http://webservers; + } + } \ No newline at end of file diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/inventory b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/test.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/test.yml new file mode 100644 index 0000000..6750534 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/nginx diff --git a/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/vars/main.yml b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/vars/main.yml new file mode 100644 index 0000000..4d5dfe2 --- /dev/null +++ b/2022/tr/Days/Configmgmt/ansible-scenario7/roles/nginx/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/nginx diff --git a/2022/tr/Days/Configmgmt/simple_play.yml b/2022/tr/Days/Configmgmt/simple_play.yml new file mode 100644 index 0000000..063d219 --- /dev/null +++ b/2022/tr/Days/Configmgmt/simple_play.yml @@ -0,0 +1,9 @@ +- name: Simple Play + hosts: localhost + connection: local + tasks: + - name: Ping me + ping: + - name: print os + debug: + msg: "{{ ansible_os_family }}" \ No newline at end of file diff --git a/2022/tr/Days/Containers/.dockerignore b/2022/tr/Days/Containers/.dockerignore new file mode 100644 index 0000000..e69de29 diff --git a/2022/tr/Days/Containers/Dockerfile b/2022/tr/Days/Containers/Dockerfile new file mode 100644 index 0000000..ce51a7e --- /dev/null +++ b/2022/tr/Days/Containers/Dockerfile @@ -0,0 +1,8 @@ +# Use the official Ubuntu 18.04 as base +FROM ubuntu:18.04 +# Install nginx and curl +RUN apt-get update && apt-get upgrade -y +#RUN apt-get install -y nginx curl +#RUN rm -rf /var/lib/apt/lists/* +RUN groupadd -g 1000 basicuser && useradd -r -u 1000 -g basicuser basicuser +USER basicuser diff --git a/2022/tr/Days/Containers/elasticsearch-logstash-kibana/README.md b/2022/tr/Days/Containers/elasticsearch-logstash-kibana/README.md new file mode 100644 index 0000000..bad26e8 --- /dev/null +++ b/2022/tr/Days/Containers/elasticsearch-logstash-kibana/README.md @@ -0,0 +1,58 @@ +## Compose sample application +### Elasticsearch, Logstash, and Kibana (ELK) in single-node + +Project structure: +``` +. +└── docker-compose.yml +``` + +[_docker-compose.yml_](docker-compose.yml) +``` +services: + elasticsearch: + image: elasticsearch:7.8.0 + ... + logstash: + image: logstash:7.8.0 + ... + kibana: + image: kibana:7.8.0 + ... +``` + +## Deploy with docker-compose + +``` +$ docker-compose up -d +Creating network "elasticsearch-logstash-kibana_elastic" with driver "bridge" +Creating es ... done +Creating log ... done +Creating kib ... done +``` + +## Expected result + +Listing containers must show three containers running and the port mapping as below: +``` +$ docker ps +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +173f0634ed33 logstash:7.8.0 "/usr/local/bin/dock…" 43 seconds ago Up 41 seconds 0.0.0.0:5000->5000/tcp, 0.0.0.0:5044->5044/tcp, 0.0.0.0:9600->9600/tcp, 0.0.0.0:5000->5000/udp log +b448fd3e9b30 kibana:7.8.0 "/usr/local/bin/dumb…" 43 seconds ago Up 42 seconds 0.0.0.0:5601->5601/tcp kib +366d358fb03d elasticsearch:7.8.0 "/tini -- /usr/local…" 43 seconds ago Up 42 seconds (healthy) 0.0.0.0:9200->9200/tcp, 0.0.0.0:9300->9300/tcp es +``` + +After the application starts, navigate to below links in your web browser: + +* Elasticsearch: [`http://localhost:9200`](http://localhost:9200) +* Logstash: [`http://localhost:9600`](http://localhost:9600) +* Kibana: [`http://localhost:5601/api/status`](http://localhost:5601/api/status) + +Stop and remove the containers +``` +$ docker-compose down +``` + +## Attribution + +The [example Nginx logs](https://github.com/docker/awesome-compose/tree/master/elasticsearch-logstash-kibana/logstash/nginx.log) are copied from [here](https://github.com/elastic/examples/blob/master/Common%20Data%20Formats/nginx_json_logs/nginx_json_logs). diff --git a/2022/tr/Days/Containers/elasticsearch-logstash-kibana/docker-compose.yml b/2022/tr/Days/Containers/elasticsearch-logstash-kibana/docker-compose.yml new file mode 100644 index 0000000..fec70c1 --- /dev/null +++ b/2022/tr/Days/Containers/elasticsearch-logstash-kibana/docker-compose.yml @@ -0,0 +1,48 @@ +services: + elasticsearch: + image: elasticsearch:7.16.1 + container_name: es + environment: + discovery.type: single-node + ES_JAVA_OPTS: "-Xms512m -Xmx512m" + ports: + - "9200:9200" + - "9300:9300" + healthcheck: + test: ["CMD-SHELL", "curl --silent --fail localhost:9200/_cluster/health || exit 1"] + interval: 10s + timeout: 10s + retries: 3 + networks: + - elastic + logstash: + image: logstash:7.16.1 + container_name: log + environment: + discovery.seed_hosts: logstash + LS_JAVA_OPTS: "-Xms512m -Xmx512m" + volumes: + - ./logstash/pipeline/logstash-nginx.config:/usr/share/logstash/pipeline/logstash-nginx.config + - ./logstash/nginx.log:/home/nginx.log + ports: + - "5000:5000/tcp" + - "5000:5000/udp" + - "5044:5044" + - "9600:9600" + depends_on: + - elasticsearch + networks: + - elastic + command: logstash -f /usr/share/logstash/pipeline/logstash-nginx.config + kibana: + image: kibana:7.16.1 + container_name: kib + ports: + - "5601:5601" + depends_on: + - elasticsearch + networks: + - elastic +networks: + elastic: + driver: bridge diff --git a/2022/tr/Days/Containers/elasticsearch-logstash-kibana/logstash/nginx.log b/2022/tr/Days/Containers/elasticsearch-logstash-kibana/logstash/nginx.log new file mode 100644 index 0000000..77007d4 --- /dev/null +++ b/2022/tr/Days/Containers/elasticsearch-logstash-kibana/logstash/nginx.log @@ -0,0 +1,8130 @@ +{"time": "17/May/2015:08:05:32 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:23 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:24 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:08:05:34 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:08:05:09 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:08:05:57 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:02 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:08:05:42 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:08:05:01 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:08:05:27 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:12 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3316, "referrer": "-", "agent": "-"} +{"time": "17/May/2015:08:05:49 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:14 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:45 +0000", "remote_ip": "46.4.66.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:08:05:26 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:22 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:07 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:08:05:38 +0000", "remote_ip": "37.26.93.214", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Go 1.1 package http"} +{"time": "17/May/2015:08:05:25 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:11 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:02 +0000", "remote_ip": "46.4.66.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:08:05:06 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:55 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:53 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:32 +0000", "remote_ip": "210.245.80.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:08:05:52 +0000", "remote_ip": "46.4.83.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:18 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:24 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:25 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 3301, "referrer": "-", "agent": "-"} +{"time": "17/May/2015:08:05:50 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:08:05:03 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:35 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:51 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:08:05:59 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:08:05:42 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:48 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:08:05:58 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:39 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:41 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:48 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:02 +0000", "remote_ip": "46.4.66.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:08:05:25 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:04 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:08 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:04 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:33 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:57 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:20 +0000", "remote_ip": "46.4.83.163", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:39 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:07 +0000", "remote_ip": "54.187.216.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "17/May/2015:08:05:59 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:02 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:07 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:31 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:08:05:14 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:46 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:08:05:01 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:41 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:52 +0000", "remote_ip": "37.26.93.214", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3318, "referrer": "-", "agent": "Go 1.1 package http"} +{"time": "17/May/2015:08:05:19 +0000", "remote_ip": "23.23.226.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "17/May/2015:08:05:20 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:56 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:13 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:10 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:58 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:11 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:00 +0000", "remote_ip": "46.4.66.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:08:05:23 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:13 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:35 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:26 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:18 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:23 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:08:05:27 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:08:05:54 +0000", "remote_ip": "46.4.83.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:25 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:56 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:52 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:04 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:11 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:26 +0000", "remote_ip": "134.119.20.172", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:29 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:44 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:14 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:27 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:03 +0000", "remote_ip": "37.26.93.214", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Go 1.1 package http"} +{"time": "17/May/2015:08:05:57 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:08:05:39 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:52 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:13 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:08:05:28 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:08:05:55 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:58 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:01 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:14 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:08:05:03 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:35 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:39 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:37 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:08:05:33 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:16 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:53 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:08:05:34 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:38 +0000", "remote_ip": "46.4.66.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:08:05:09 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:58 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:07 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:08:05:23 +0000", "remote_ip": "46.4.83.163", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:19 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:46 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:28 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:52 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:08:05:22 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:08:05:54 +0000", "remote_ip": "144.76.151.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:28 +0000", "remote_ip": "134.119.20.172", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:26 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:09:05:55 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:08 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:18 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:09:05:05 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:25 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:18 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:56 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:42 +0000", "remote_ip": "37.26.93.214", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Go 1.1 package http"} +{"time": "17/May/2015:09:05:29 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:36 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:26 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:15 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:23 +0000", "remote_ip": "54.193.30.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "17/May/2015:09:05:09 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:46 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:09 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:54 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:46 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:09:05:38 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:40 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:49 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:25 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:09 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:09:05:59 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:08 +0000", "remote_ip": "54.191.136.177", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "17/May/2015:09:05:27 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:57 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:05 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:09:05:22 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:12 +0000", "remote_ip": "46.4.83.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:58 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:57 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:33 +0000", "remote_ip": "144.76.151.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:00 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:19 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:41 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:51 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:09:05:20 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:28 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:47 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:37 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:01 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:02 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:38 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:09:05:03 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:15 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:56 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:33 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:49 +0000", "remote_ip": "46.4.88.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:34 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:28 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:50 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:55 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:07 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:09:05:36 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:46 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:16 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:25 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:45 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:31 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:35 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:56 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:43 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:09:05:44 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:38 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:34 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:10 +0000", "remote_ip": "46.4.83.163", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:42 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:40 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:41 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:07 +0000", "remote_ip": "210.245.80.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:28 +0000", "remote_ip": "144.76.151.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:11 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:59 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:07 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:19 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:09:05:03 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:17 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:11 +0000", "remote_ip": "152.90.220.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:01 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:09:05:54 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:07 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:42 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:49 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:51 +0000", "remote_ip": "46.4.88.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:06 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:19 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:43 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:22 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:23 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:07 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:22 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:27 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:23 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:08 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:19 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:39 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:15 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:20 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:09:05:08 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:55 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:09:05:29 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:00 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:09 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:30 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:49 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:13 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:09:05:33 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:32 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:49 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:11 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:09:05:59 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:09:05:12 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:09:05:47 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:09:05:09 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:52 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:09:05:42 +0000", "remote_ip": "144.76.151.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:40 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:10:05:47 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:51 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:22 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:13 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 327, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:10:05:48 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:10 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:10:05:58 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:01 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:32 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:28 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:10:05:54 +0000", "remote_ip": "46.4.88.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:53 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:10:05:22 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:38 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:16 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:24 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:39 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:43 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:14 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:09 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:18 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:17 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:36 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:57 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:55 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:03 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:05 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:08 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:40 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:39 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:25 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:33 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:28 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:02 +0000", "remote_ip": "217.168.17.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:10:05:18 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:33 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 329, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:10:05:10 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:52 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:54 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:41 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:02 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:22 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:50 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:28 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:46 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:33 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:05 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:47 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:48 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:51 +0000", "remote_ip": "91.194.188.90", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:10:05:13 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:18 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:34 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:10:05:40 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:16 +0000", "remote_ip": "46.4.88.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:50 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:02 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:10 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:36 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:03 +0000", "remote_ip": "144.76.137.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:23 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:11 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:22 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 326, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:10:05:06 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:38 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:33 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:47 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:58 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:10 +0000", "remote_ip": "144.76.151.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:42 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:31 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:41 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:16 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:43 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:38 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:33 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:55 +0000", "remote_ip": "54.187.216.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "17/May/2015:10:05:04 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:09 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:10:05:06 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:05 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:40 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:02 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:50 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:10:05:51 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:10:05:55 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:10:05:47 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:30 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:15 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:30 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:08 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:36 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:05 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:33 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:04 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:49 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:10:05:11 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:12 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:54 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:39 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:10:05:51 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:49 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:18 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:49 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:10:05:48 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:06 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:19 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:15 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:31 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:47 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:45 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:10:05:07 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:14 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:07 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:18 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:10:05:23 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:05 +0000", "remote_ip": "91.194.188.90", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:10:05:51 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:10:05:48 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:10:05:23 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:10:05:22 +0000", "remote_ip": "93.180.71.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:10:05:43 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:31 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:00 +0000", "remote_ip": "144.76.137.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:22 +0000", "remote_ip": "54.86.157.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:11:05:09 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:16 +0000", "remote_ip": "144.76.151.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:06 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:11:05:20 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:05 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:29 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:28 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:38 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:58 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:51 +0000", "remote_ip": "46.4.88.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:35 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:05 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:25 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:08 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:07 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:21 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:44 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:19 +0000", "remote_ip": "54.72.39.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "17/May/2015:11:05:03 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:25 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:12 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:47 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:10 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:19 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:45 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:08 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:40 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:39 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:18 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:44 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:11:05:33 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:56 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:31 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:40 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:30 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:44 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:28 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:11:05:51 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:11:05:11 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:13 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:11:05:23 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:06 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:29 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:00 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:29 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:54 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:46 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:59 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:11:05:17 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:51 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:39 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:11:05:28 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:56 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:49 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:36 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:07 +0000", "remote_ip": "144.76.137.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:00 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:43 +0000", "remote_ip": "54.172.198.124", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "17/May/2015:11:05:27 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:03 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:16 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:26 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:36 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:11:05:48 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:19 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:42 +0000", "remote_ip": "91.194.188.90", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:11:05:35 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:45 +0000", "remote_ip": "144.76.151.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:48 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:19 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:11 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:31 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:20 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:03 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:52 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:43 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:11:05:31 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:09 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:15 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:17 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:30 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:11:05:29 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:05 +0000", "remote_ip": "210.245.80.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:12 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:55 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:02 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:49 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:05 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:48 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:55 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:56 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:58 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:11 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:20 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:11:05:56 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:19 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:55 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:35 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:26 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:56 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:53 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:11:05:42 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:32 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:11:05:23 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:11:05:57 +0000", "remote_ip": "144.76.137.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:16 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:11:05:28 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:21 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:16 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:11:05:11 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:11:05:32 +0000", "remote_ip": "91.194.188.90", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:11:05:39 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:11:05:52 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:15 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:38 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:32 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:12:05:38 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:26 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:27 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:01 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:26 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:00 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:11 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:29 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:38 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:34 +0000", "remote_ip": "87.233.156.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:22 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:25 +0000", "remote_ip": "144.76.151.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:12 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:05 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:48 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:31 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:21 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:54 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:59 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:05 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:58 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:29 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:14 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:39 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:14 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:37 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:41 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:40 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:34 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:17 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:34 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:12:05:11 +0000", "remote_ip": "144.76.137.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:19 +0000", "remote_ip": "188.138.60.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:50 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:33 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:15 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:12:05:38 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:12:05:04 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:02 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:51 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:41 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:31 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:41 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:08 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:12:05:09 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:46 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:38 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:12:05:54 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:47 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:12:05:14 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:47 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:57 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:12:05:19 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:12:05:14 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:02 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:31 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:07 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:38 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:42 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:46 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:26 +0000", "remote_ip": "152.90.220.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:42 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:19 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:24 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:17 +0000", "remote_ip": "54.194.143.19", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2573, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "17/May/2015:12:05:18 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:26 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:46 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:37 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:00 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:15 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:00 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:55 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:38 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:17 +0000", "remote_ip": "50.57.209.92", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:02 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:15 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:47 +0000", "remote_ip": "91.194.188.90", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:12:05:46 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:12:05:56 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:27 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:46 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:53 +0000", "remote_ip": "144.76.137.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:27 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:52 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:12:05:10 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:12:05:06 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:36 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:13 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:52 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:51 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:36 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:24 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:54 +0000", "remote_ip": "91.239.186.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:28 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:35 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:15 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:44 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:53 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:00 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:12:05:54 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:09 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:57 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:51 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:49 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:39 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:12:05:55 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:12:05:16 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:12:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:12:05:28 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:12:05:33 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:12:05:22 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:13:05:07 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:34 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:13:05:00 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:26 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:30 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:33 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:13:05:34 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:07 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:28 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:16 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:58 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:14 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:26 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:33 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:16 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:44 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:08 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:13:05:48 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:33 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:26 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:16 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:43 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:22 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 322, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:13:05:51 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:34 +0000", "remote_ip": "212.77.185.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:13:05:31 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:05 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:13:05:06 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:05 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:07 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:42 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:38 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:03 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:58 +0000", "remote_ip": "212.77.185.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:13:05:16 +0000", "remote_ip": "212.77.185.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:13:05:33 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:05 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:02 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:57 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:32 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:17 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:05 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:12 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:51 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:57 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:13:05:46 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:54 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:06 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:18 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:39 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:13:05:19 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:13:05:03 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:54 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:02 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:13:05:48 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:01 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:02 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:01 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:23 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:08 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:19 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:16 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:17 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:08 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:52 +0000", "remote_ip": "195.154.77.170", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:26 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:13:05:22 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:40 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:13 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 321, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:13:05:42 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:28 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:42 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:56 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:08 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:17 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:39 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:22 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:45 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:29 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:57 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:59 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:13:05:53 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:18 +0000", "remote_ip": "212.77.185.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:13:05:04 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:54 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:30 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:31 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:06 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:32 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:39 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:44 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:13:05:55 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:26 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:14 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:43 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:02 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:24 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:45 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:52 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:15 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:13:05:55 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:12 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:13:05:40 +0000", "remote_ip": "144.92.16.161", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:13:05:28 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:35 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:19 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:24 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:25 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:13:05:21 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:26 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:13:05:15 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:40 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:05 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:30 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:41 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:39 +0000", "remote_ip": "5.83.131.103", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:06 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:13:05:41 +0000", "remote_ip": "62.75.167.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:20 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:34 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:41 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:13:05:07 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:13:05:17 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:36 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:03 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:13:05:08 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:07 +0000", "remote_ip": "62.75.198.179", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:22 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:14 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:22 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:59 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:14:05:17 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:32 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:11 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:50 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:24 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:39 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:43 +0000", "remote_ip": "212.77.185.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:14:05:34 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:29 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:53 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:11 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:49 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:17 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:55 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:22 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:14:05:49 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:14:05:39 +0000", "remote_ip": "200.6.73.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:19 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:30 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:33 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:40 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:14:05:38 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:14:05:43 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:17 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:01 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:04 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:57 +0000", "remote_ip": "91.121.161.213", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:11 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:16 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:56 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:30 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:29 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:53 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:16 +0000", "remote_ip": "31.22.86.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:55 +0000", "remote_ip": "80.70.214.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:14:05:00 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:42 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:30 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:14:05:20 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:07 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:14:05:52 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:16 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:44 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:38 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:14:05:53 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:11 +0000", "remote_ip": "212.77.185.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:14:05:29 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:01 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:44 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:07 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:44 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:14 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:19 +0000", "remote_ip": "62.75.198.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:39 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:36 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:41 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:15 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:20 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:32 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:12 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:22 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:30 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:43 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:14:05:47 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:14:05:19 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:14:05:49 +0000", "remote_ip": "84.53.65.28", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:36 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:30 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:11 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:14:05:44 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:26 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:34 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:57 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:39 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:56 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:14:05:15 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:14:05:24 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:07 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:27 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:55 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:43 +0000", "remote_ip": "212.77.185.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:14:05:29 +0000", "remote_ip": "93.190.71.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:06 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:38 +0000", "remote_ip": "152.90.220.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:21 +0000", "remote_ip": "178.32.54.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:22 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:58 +0000", "remote_ip": "37.187.238.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:11 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:54 +0000", "remote_ip": "198.61.216.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:30 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:46 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:24 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:11 +0000", "remote_ip": "54.64.16.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "17/May/2015:14:05:10 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:21 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:22 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:56 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:26 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:14:05:14 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:44 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:14:05:11 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:14:05:37 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:46 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:14:05:44 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:14:05:53 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:26 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:53 +0000", "remote_ip": "93.64.134.186", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:39 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:46 +0000", "remote_ip": "91.234.194.89", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:44 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:40 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:14:05:48 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:33 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:14:05:34 +0000", "remote_ip": "195.154.233.202", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:14:05:59 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:05 +0000", "remote_ip": "144.76.117.56", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:14:05:57 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:14:05:48 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:27 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:15:05:19 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:16 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:09 +0000", "remote_ip": "193.192.58.163", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:19 +0000", "remote_ip": "62.210.138.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:13 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:40 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:28 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:09 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:31 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:53 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:54 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:40 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:46 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:56 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:47 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:25 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:31 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:59 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:15:05:37 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:15:05:06 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:45 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:05 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:52 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:31 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:27 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:31 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:37 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:44 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:42 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:22 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:44 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:07 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:44 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:04 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:59 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:30 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:21 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:46 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:12 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:58 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:30 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:51 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:52 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:51 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:25 +0000", "remote_ip": "2.84.217.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:15:05:27 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:24 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:15:05:47 +0000", "remote_ip": "75.126.196.172", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:15:05:11 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:14 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:29 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:35 +0000", "remote_ip": "83.161.14.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:04 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:15 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 344, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:58 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:37 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:52 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:10 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:47 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:04 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:30 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:33 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:52 +0000", "remote_ip": "193.71.65.33", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 327, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:10 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:53 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:47 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:59 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:02 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:23 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:49 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:30 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:23 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:15:05:10 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:45 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:47 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:49 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:50 +0000", "remote_ip": "91.120.61.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:19 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:38 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:20 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:36 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:39 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:34 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:01 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:20 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:22 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:45 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:12 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:00 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:17 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:41 +0000", "remote_ip": "144.76.160.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:08 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:23 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:52 +0000", "remote_ip": "69.59.197.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:15:05:01 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:23 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:34 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:38 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:57 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:33 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:09 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:46 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:31 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:15:05:48 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:39 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:50 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:17 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:12 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:09 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:37 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:04 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:15 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:21 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:24 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:02 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:53 +0000", "remote_ip": "193.192.59.41", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:55 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:07 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:15:05:13 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:53 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:59 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:12 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:15:05:08 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:15:05:55 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:08 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:15:05:47 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:15:05:19 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:52 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:15:05:33 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 327, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:16:05:08 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:23 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:16:05:09 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:22 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:53 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:16 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:13 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:14 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:50 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:54 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:50 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 326, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:16:05:18 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:08 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:16:05:10 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:56 +0000", "remote_ip": "152.90.220.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:46 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:23 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:55 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:09 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:33 +0000", "remote_ip": "195.210.47.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:40 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:16:05:54 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:16 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:52 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:57 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:41 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:10 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:56 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:41 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:16:05:25 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:23 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:34 +0000", "remote_ip": "87.85.173.82", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:16:05:32 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:00 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:11 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:34 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:14 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:32 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:33 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:08 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:45 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:07 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:06 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:42 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:52 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:26 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:16:05:57 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:19 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:44 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:35 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:33 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:22 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:25 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:11 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:22 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:25 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:51 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:39 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:23 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:16 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:09 +0000", "remote_ip": "202.143.95.26", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:16:05:51 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:23 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:08 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:59 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:09 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:53 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:39 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:51 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:08 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:06 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:05 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:29 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:45 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:24 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:41 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:09 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:53 +0000", "remote_ip": "92.63.172.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:23 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:40 +0000", "remote_ip": "152.90.220.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:43 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:21 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:19 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:41 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:58 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:41 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:50 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:32 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:30 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:46 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:59 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:11 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:48 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:49 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:53 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:01 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:51 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:04 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:27 +0000", "remote_ip": "212.67.220.58", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:31 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:48 +0000", "remote_ip": "176.58.26.39", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:16:05:02 +0000", "remote_ip": "176.58.26.40", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:16:05:26 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:05 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:08 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:02 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:31 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:58 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:12 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:32 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:57 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:16:05:41 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 342, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:29 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:56 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:16:05:57 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:16:05:24 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:31 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:16:05:06 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:50 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:16:05:13 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:16:05:44 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:16:05:10 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:06 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:55 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:37 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:50 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:26 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:15 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:17:05:22 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:17:05:28 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:20 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:35 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 344, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:13 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:34 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:40 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:17:05:58 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:17:05:26 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:41 +0000", "remote_ip": "72.5.167.142", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:17:05:27 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:17:05:43 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:58 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:43 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:47 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:25 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:47 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:17 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:28 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:17:05:42 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:58 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:56 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:08 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:44 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:17:05:45 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:34 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:17:05:30 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:13 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:59 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:31 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:25 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:03 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:44 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:01 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:54 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:50 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:17 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:06 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:42 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:17:05:47 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:57 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:32 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:17:05:49 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:48 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:24 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:11 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:13 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:26 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:35 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:03 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:48 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:37 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:17:05:51 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:17:05:37 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:42 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:51 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:03 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:04 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:17:05:24 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:43 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:34 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:41 +0000", "remote_ip": "91.121.91.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:34 +0000", "remote_ip": "213.135.92.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:05 +0000", "remote_ip": "152.90.220.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:55 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:17:05:50 +0000", "remote_ip": "176.58.26.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:17:05:54 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:17:05:56 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:44 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:29 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:23 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:41 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:58 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:22 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:33 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:40 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:08 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:23 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:17:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:04 +0000", "remote_ip": "37.26.93.214", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Go 1.1 package http"} +{"time": "17/May/2015:17:05:44 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:17:05:28 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:17:05:31 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:53 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:17:05:22 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:49 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:02 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:40 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:00 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:05 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:17:05:37 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:59 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:43 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:13 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:02 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:57 +0000", "remote_ip": "185.17.41.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:41 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:17:05:46 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:28 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:58 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:17 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:17:05:33 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:02 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:38 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:46 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:02 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:17:05:29 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:17:05:11 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:17:05:08 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:43 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:38 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:28 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:35 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:17:05:46 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:09 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:17:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:17:05:27 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:17:05:28 +0000", "remote_ip": "54.171.169.20", "remote_user": "-", "request": "GET /downloads/product_3 HTTP/1.1", "response": 200, "bytes": 1074411, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "17/May/2015:18:05:07 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:18:05:42 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:43 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:28 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:50 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:16 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:41 +0000", "remote_ip": "185.17.41.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:30 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:16 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:18:05:08 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:18:05:12 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:52 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:31 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:37 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:33 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:39 +0000", "remote_ip": "154.66.205.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:18:05:25 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:56 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:28 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:48 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:01 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:29 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:18:05:08 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:18:05:09 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:53 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:32 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:18:05:52 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:18:05:26 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:18:05:23 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:31 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:42 +0000", "remote_ip": "212.83.134.68", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:18:05:29 +0000", "remote_ip": "54.160.224.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:20 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:18:05:59 +0000", "remote_ip": "92.50.100.22", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:37 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:08 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:45 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:18:05:14 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:48 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:02 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:52 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:18:05:56 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:01 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:22 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:18 +0000", "remote_ip": "152.90.220.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:32 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:52 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:38 +0000", "remote_ip": "62.210.152.199", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:18:05:23 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:07 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:08 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:37 +0000", "remote_ip": "176.58.26.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:18:05:33 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:09 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:50 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:46 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:12 +0000", "remote_ip": "202.78.200.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:53 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:18:05:38 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:18 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:23 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:33 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:09 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:18:05:16 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:18:05:59 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:20 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:11 +0000", "remote_ip": "185.17.41.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:05 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:54 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:19 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:58 +0000", "remote_ip": "208.65.107.104", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.10.4 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "17/May/2015:18:05:14 +0000", "remote_ip": "195.101.165.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:18:05:45 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:38 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:18:05:04 +0000", "remote_ip": "37.26.93.214", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2508, "referrer": "-", "agent": "Go 1.1 package http"} +{"time": "17/May/2015:18:05:08 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:34 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:35 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:05 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:56 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:24 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:02 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:13 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:59 +0000", "remote_ip": "83.42.24.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "17/May/2015:18:05:44 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:29 +0000", "remote_ip": "185.17.41.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:56 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:57 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:16 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:44 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:46 +0000", "remote_ip": "152.90.220.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:58 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:43 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:59 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:18:05:31 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:18:05:55 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:12 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:45 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:58 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 327, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:18:05:06 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:46 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:58 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:51 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:09 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:35 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:06 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:05 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:11 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:18 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:48 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:28 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 326, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:18:05:39 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:07 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:01 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:49 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:18:05:43 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:02 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:09 +0000", "remote_ip": "85.214.47.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:18:05:03 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:18:05:39 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:18:05:48 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:26 +0000", "remote_ip": "212.83.167.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:24 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:45 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:20 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:10 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:13 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:33 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:19:05:02 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 326, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:39 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:02 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:34 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:23 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:39 +0000", "remote_ip": "185.17.41.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:24 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:51 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:22 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:47 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:54 +0000", "remote_ip": "152.90.220.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:33 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:46 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:45 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:47 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:14 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:51 +0000", "remote_ip": "94.23.21.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:37 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:29 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:14 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:40 +0000", "remote_ip": "185.17.41.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:28 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:26 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:37 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:19:05:22 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:04 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:19:05:33 +0000", "remote_ip": "208.47.132.224", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:19:05:21 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:08 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:38 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:27 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:11 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:45 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:59 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:10 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:34 +0000", "remote_ip": "185.17.41.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:40 +0000", "remote_ip": "2.84.217.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:19:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:43 +0000", "remote_ip": "89.97.236.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:19:05:42 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:23 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:49 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:30 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:37 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:53 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:08 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:35 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:58 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:22 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:50 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:41 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:21 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:42 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:19:05:23 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:13 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:46 +0000", "remote_ip": "185.17.41.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:03 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:53 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:59 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:07 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:49 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:27 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:51 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:38 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:46 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:59 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:41 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:53 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:26 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:40 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:18 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:04 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:19:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:54 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:19:05:24 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:52 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:55 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:12 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:59 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:20 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:17 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:42 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:40 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:19:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:16 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:36 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:48 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:45 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:41 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:19:05:45 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:55 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:15 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:19:05:32 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:44 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:12 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:44 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:29 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:40 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:19:05:54 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:19:05:50 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:19:05:25 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:19:05:57 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:13 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:19:05:57 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:35 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:19 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:38 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:20:05:12 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:20:05:04 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:10 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:12 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:08 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:20:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:56 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:06 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:04 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:51 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:13 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:20:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:15 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:40 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:46 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:01 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:15 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:56 +0000", "remote_ip": "54.66.232.99", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 45137430, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:20:05:27 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:20:05:46 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:30 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:12 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:56 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:55 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:21 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:26 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:44 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:16 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:55 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:34 +0000", "remote_ip": "10.16.62.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:20:05:27 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:36 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 322, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:20:05:41 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:23 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:08 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:06 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:57 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:39 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:15 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:22 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:51 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:12 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:14 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:20:05:06 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:28 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 321, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:20:05:46 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:54 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:04 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:14 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:27 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:30 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:21 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:28 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:39 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:08 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:04 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:33 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 321, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:20:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:56 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:56 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:42 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:20 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:02 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:54 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:49 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:53 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:35 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:29 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:04 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:28 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 320, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:20:05:21 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:18 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:20:05:19 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:58 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:14 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:55 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:12 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:27 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:48 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:51 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:56 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:57 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:10 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:14 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:15 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:30 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:04 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:20:05:06 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:13 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:20:05:44 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:41 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:56 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:46 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:16 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:51 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:10 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:20:05:07 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:45 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:04 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:08 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:07 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:20:05:49 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:56 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:20:05:30 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:20:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:21:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:27 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:21 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:37 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:51 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:21:05:13 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:52 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:20 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:22 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:24 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:11 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:50 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:22 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:21:05:15 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:45 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:50 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:11 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:50 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:31 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:21:05:16 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:19 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:11 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:21:05:32 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:39 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:10 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:47 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:59 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:25 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:57 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:00 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:48 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:08 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:41 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:06 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:58 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:19 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:45 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:16 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:41 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:21:05:07 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:27 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:54 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:21:05:47 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:32 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:52 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:49 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:36 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:21 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:36 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:00 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:19 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:55 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:57 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:43 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:34 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:21:05:57 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:50 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:41 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:33 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:21:05:16 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:56 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:43 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:32 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:21:05:53 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:55 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:06 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:41 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:43 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:00 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:57 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:21:05:52 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:03 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:27 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:53 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:22 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:29 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:28 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:35 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:21:05:25 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:20 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:45 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:50 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:32 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:05 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:24 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:21:05:05 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:03 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:00 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:28 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:06 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:46 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:21 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:22 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:54 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:51 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:55 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:21:05:22 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:45 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 329, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:21:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:16 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:21 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:51 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:57 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:21:05:43 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:21:05:41 +0000", "remote_ip": "190.98.202.219", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:22:05:18 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:50 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:29 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:08 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:26 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:16 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:49 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:11 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:29 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:01 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:39 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:22:05:37 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:48 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:37 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:14 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:02 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:18 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:45 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:39 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:09 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:28 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:00 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:11 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:31 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:11 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:56 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:02 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:58 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:22:05:27 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:43 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:05 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:41 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:53 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:40 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:57 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:19 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:42 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:30 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:51 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:24 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:22:05:53 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:17 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:24 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:33 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:13 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:27 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:48 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:29 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:31 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:00 +0000", "remote_ip": "216.69.191.97", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:22:05:47 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:07 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:43 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:46 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:01 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:22:05:31 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:40 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:05 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 322, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:03 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:22 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:35 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:10 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:43 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:45 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.2)"} +{"time": "17/May/2015:22:05:01 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:47 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:22:05:17 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:38 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:58 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:08 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:39 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:22:05:30 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:27 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:33 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:35 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:09 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:01 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:18 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:22 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 321, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:52 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:11 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:36 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:09 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:11 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:57 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:22:05:20 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:24 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:05 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:04 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:22 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:06 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:31 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:43 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:27 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:45 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:22 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:47 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:06 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:50 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:29 +0000", "remote_ip": "54.146.6.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "17/May/2015:22:05:20 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:22:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:33 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:27 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:43 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "17/May/2015:22:05:18 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:59 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:11 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:22:05:22 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:31 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:32 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "17/May/2015:22:05:42 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:00 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:22:05:32 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:22:05:38 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:22:05:36 +0000", "remote_ip": "210.245.80.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:22:05:12 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:01 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:11 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:10 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:31 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:57 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:53 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:23:05:20 +0000", "remote_ip": "94.242.58.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:57 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 329, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:23:05:49 +0000", "remote_ip": "94.242.57.74", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:57 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:07 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:16 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:11 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:23:05:26 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:32 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:38 +0000", "remote_ip": "210.245.80.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:22 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:51 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "HEAD /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:23:05:40 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:16 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:29 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:26 +0000", "remote_ip": "194.76.107.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "17/May/2015:23:05:46 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:39 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:27 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:05 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:14 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:23:05:19 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:49 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:23:05:38 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:19 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:33 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:23 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:23:05:06 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:14 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:23 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:32 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:24 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:23:05:00 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:02 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:27 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "17/May/2015:23:05:42 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:08 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:41 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:32 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:54 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:32 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:16 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:54 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:34 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:38 +0000", "remote_ip": "129.67.27.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "17/May/2015:23:05:23 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:11 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:23 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:28 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "17/May/2015:23:05:04 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:37 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:33 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:00 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:30 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:46 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:55 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:31 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:35 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:47 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:19 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:05 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:39 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:51 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:40 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:17 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:34 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:38 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:13 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:09 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:31 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:11 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:09 +0000", "remote_ip": "89.97.236.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "17/May/2015:23:05:26 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:36 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:45 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:28 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:16 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:59 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:12 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 342, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:57 +0000", "remote_ip": "210.245.80.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:12 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "17/May/2015:23:05:38 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:47 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:08 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:48 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:49 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:08 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:40 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:32 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:34 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:09 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:48 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:57 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:23:05:15 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:29 +0000", "remote_ip": "74.205.117.244", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "17/May/2015:23:05:48 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:09 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "17/May/2015:23:05:38 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:00 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:20 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:23:05:49 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:53 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:16 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:50 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:29 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:23:05:04 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:07 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:32 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:29 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:23:05:32 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:36 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:38 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:01 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:38 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "17/May/2015:23:05:42 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:23:05:36 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:23:05:22 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "17/May/2015:23:05:55 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "17/May/2015:23:05:39 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:16 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:28 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:50 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:41 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:32 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:38 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:00 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:58 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:56 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:47 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:45 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:30 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:00 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:40 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:53 +0000", "remote_ip": "54.77.119.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:49 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:18 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:10 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:56 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:08 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:47 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:09 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:26 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:14 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:43 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:23 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:19 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:38 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:45 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:52 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:09 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:57 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:18 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:06 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:21 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:28 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:13 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:33 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:38 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:00 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:57 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:03 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:51 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:07 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:15 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:50 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:49 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:42 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:51 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:23 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:02 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:44 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:38 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:03 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 342, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:23 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 342, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:16 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:32 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:45 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:38 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:13 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:57 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:31 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:05 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:27 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:48 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:25 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:21 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:26 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:43 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:21 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:54 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:43 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:08 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:46 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:38 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:32 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:41 +0000", "remote_ip": "188.165.150.136", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:22 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:14 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:00 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:08 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:37 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:38 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:04 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:47 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:23 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:48 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:03 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:21 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:01 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:45 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:19 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:52 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:16 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:39 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:25 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:39 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:48 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:56 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:00:05:12 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:15 +0000", "remote_ip": "54.76.150.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:51 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:50 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:45 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:33 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:50 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:00:05:49 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:10 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:00:05:01 +0000", "remote_ip": "137.135.244.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:00:05:55 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:00:05:06 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:00 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:27 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:01:05:48 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:18 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:24 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:54 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:01:05:51 +0000", "remote_ip": "54.221.135.233", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "18/May/2015:01:05:07 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:54 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:39 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:52 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:19 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:06 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:24 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:51 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:25 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:59 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:38 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:53 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:59 +0000", "remote_ip": "137.117.183.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:30 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:22 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:00 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:35 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:03 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:18 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:26 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:18 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:48 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:21 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:07 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:01 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:27 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:39 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:52 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:16 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:37 +0000", "remote_ip": "193.85.232.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:43 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:39 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:01 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:23 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:21 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:39 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:59 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:54 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:04 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:20 +0000", "remote_ip": "193.85.232.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:37 +0000", "remote_ip": "137.117.182.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:46 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:52 +0000", "remote_ip": "193.234.242.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:45 +0000", "remote_ip": "193.85.232.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:17 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:23 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:41 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:13 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:02 +0000", "remote_ip": "193.85.232.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:00 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:06 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:12 +0000", "remote_ip": "193.85.232.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:08 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:28 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:41 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:02 +0000", "remote_ip": "193.85.232.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:19 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:01:05:21 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:41 +0000", "remote_ip": "193.85.232.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:51 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:01:05:22 +0000", "remote_ip": "193.85.232.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:01:05:17 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:01:05:18 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:39 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:01:05:26 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:34 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:11 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:38 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:36 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:54 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:01:05:22 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:24 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:01:05:02 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:01:05:13 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:01:05:49 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:01 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:50 +0000", "remote_ip": "54.236.126.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 81860793, "referrer": "-", "agent": "Chef Client/11.10.4 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:01:05:52 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:01:05:01 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:55 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:01:05:28 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:18 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:04 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:40 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:17 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:12 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:17 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:01 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:17 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:44 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:45 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:32 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:24 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:01:05:06 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:28 +0000", "remote_ip": "210.245.80.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:18 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:42 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:50 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:57 +0000", "remote_ip": "54.224.221.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp5ubuntu13.7)"} +{"time": "18/May/2015:01:05:58 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:39 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:01:05:19 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:17 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:51 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:35 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:27 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:59 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:40 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:01:05:20 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:01:05:30 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:52 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:42 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:17 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:28 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:01:05:01 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:51 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:01:05:08 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:01:05:53 +0000", "remote_ip": "54.205.253.104", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:39 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:37 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:02:05:19 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:32 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:02:05:18 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:59 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:02:05:08 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:45 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:02:05:25 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:02:05:44 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:04 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:34 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:44 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:02:05:22 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:57 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:02:05:31 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:32 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:02:05:09 +0000", "remote_ip": "91.194.188.90", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:02:05:36 +0000", "remote_ip": "54.172.169.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3"} +{"time": "18/May/2015:02:05:20 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:53 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:02:05:39 +0000", "remote_ip": "91.194.188.90", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:02:05:21 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:22 +0000", "remote_ip": "137.117.184.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:02:05:15 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:21 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:12 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:08 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:40 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:53 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:22 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:17 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:24 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:15 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:09 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:10 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:45 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:55 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:32 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:01 +0000", "remote_ip": "109.239.99.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:00 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:22 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:41 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:34 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:16 +0000", "remote_ip": "124.205.129.97", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:02:05:42 +0000", "remote_ip": "66.192.59.2", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:02:05:01 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:10 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:34 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:01 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:33 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:06 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:41 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:30 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:51 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:42 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:23 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:17 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:18 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:02 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:40 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:01 +0000", "remote_ip": "89.97.236.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:02:05:00 +0000", "remote_ip": "54.173.223.183", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:02:05:41 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:35 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:59 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:42 +0000", "remote_ip": "89.97.236.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2573, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:02:05:39 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:34 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:00 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:53 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:38 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:27 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:02 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:13 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:15 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:11 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:39 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:21 +0000", "remote_ip": "124.205.129.97", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:02:05:44 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:38 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:25 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:44 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:17 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:27 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:39 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:22 +0000", "remote_ip": "127.0.0.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:02:05:29 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:39 +0000", "remote_ip": "127.0.0.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:02:05:12 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:39 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:02 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:36 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:44 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:36 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:22 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:36 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:06 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:31 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:46 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:11 +0000", "remote_ip": "127.0.0.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:02:05:28 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:10 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:08 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:51 +0000", "remote_ip": "94.79.184.234", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:02:05:43 +0000", "remote_ip": "94.79.184.234", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:02:05:59 +0000", "remote_ip": "127.0.0.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:02:05:38 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:40 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:02:05:53 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:02:05:48 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:09 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:46 +0000", "remote_ip": "194.58.90.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:54 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:31 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:02 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:03 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:21 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:35 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:48 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:25 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:42 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:03:05:07 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:03:05:55 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:03:05:52 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:03:05:08 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:31 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:26 +0000", "remote_ip": "185.20.227.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:03:05:47 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:14 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:28 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:55 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:26 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:09 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:26 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:58 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:43 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:59 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:49 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:32 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:27 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:00 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:12 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:43 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:39 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:20 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:27 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:16 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:07 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:34 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:39 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:49 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:57 +0000", "remote_ip": "54.198.38.158", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:03:05:56 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:44 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:04 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:34 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:06 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:30 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:54 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 972, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:03 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 437, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:23 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 332, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:09 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:53 +0000", "remote_ip": "91.199.181.7", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "apt-cacher/1.7.6 libcurl/7.26.0 GnuTLS/2.12.20 zlib/1.2.7 libidn/1.25 libssh2/1.4.2 librtmp/2.3"} +{"time": "18/May/2015:03:05:02 +0000", "remote_ip": "137.117.182.122", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:03:05:25 +0000", "remote_ip": "63.131.154.195", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2573, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:03:05:40 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 300, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:41 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:18 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:13 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:34 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:17 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:03 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:36 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:53 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 299, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:23 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:10 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:43 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:37 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:15 +0000", "remote_ip": "148.251.193.165", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:48 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:11 +0000", "remote_ip": "148.251.193.165", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:38 +0000", "remote_ip": "148.251.193.165", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:40 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:26 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:23 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:19 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:58 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:47 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:22 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:29 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:19 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:27 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:16 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 922, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:02 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 443, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:38 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 333, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:30 +0000", "remote_ip": "208.65.107.104", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.10.4 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:03:05:05 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:04 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:40 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 300, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:36 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:40 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 299, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:28 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:39 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:57 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:26 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:42 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:13 +0000", "remote_ip": "204.77.169.137", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:45 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1288, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:24 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:56 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1628, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:04 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 563, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:03:05:12 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:23 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:02 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:27 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:00 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:24 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:46 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:54 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:03:05:23 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:00 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:06 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:03:05:32 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:03:05:27 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:03:05:54 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:32 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:04:05:58 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:51 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:54 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:04:05:01 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:25 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:04:05:18 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 305, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:04:05:55 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:38 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:32 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:50 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:24 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:22 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:04:05:16 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:10 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:04:05:00 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 304, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:04:05:37 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:08 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:06 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:25 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:52 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:19 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 806, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:04:05:08 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1837, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:04:05:07 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2328, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:04:05:08 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:04 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:20 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:02 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:06 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:26 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:04:05:37 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:40 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:18 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:31 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:28 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:04 +0000", "remote_ip": "188.138.41.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:18 +0000", "remote_ip": "54.175.18.186", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:04:05:28 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:04 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:13 +0000", "remote_ip": "137.117.186.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:04:05:46 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 306, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:04:05:59 +0000", "remote_ip": "90.216.134.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 305, "referrer": "-", "agent": "python-requests/2.0.0 CPython/2.6.6 Linux/2.6.32-358.18.1.el6.x86_64"} +{"time": "18/May/2015:04:05:07 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:04:05:23 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:52 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:47 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:10 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:56 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:22 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:02 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:45 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:09 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:42 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:29 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:20 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:04:05:36 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:58 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:03 +0000", "remote_ip": "108.61.212.10", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:04:05:23 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:50 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:27 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:18 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:54 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:35 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:25 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:04:05:31 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:16 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:05 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:14 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:11 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:00 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:21 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:24 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:04 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:34 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:25 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:30 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:04 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:18 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:04 +0000", "remote_ip": "178.32.248.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.8)"} +{"time": "18/May/2015:04:05:51 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:19 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:56 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:28 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:03 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:14 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:52 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:02 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:27 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:15 +0000", "remote_ip": "54.88.226.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 19077208, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:04:05:34 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:24 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:44 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:49 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:27 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:30 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:32 +0000", "remote_ip": "54.229.71.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:35 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:49 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:38 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:32 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:01 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:48 +0000", "remote_ip": "174.26.205.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:54 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:33 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:27 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:25 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:03 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:04 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:04:05:01 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:39 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:04:05:25 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:00 +0000", "remote_ip": "78.42.40.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:29 +0000", "remote_ip": "157.166.251.1", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 18443572, "referrer": "-", "agent": "Chef Client/11.8.2 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:05:05:33 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:05:05:03 +0000", "remote_ip": "91.199.181.7", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "apt-cacher/1.7.6 libcurl/7.26.0 GnuTLS/2.12.20 zlib/1.2.7 libidn/1.25 libssh2/1.4.2 librtmp/2.3"} +{"time": "18/May/2015:05:05:44 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:25 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:08 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:59 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:48 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:55 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:06 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:27 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:38 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:14 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:22 +0000", "remote_ip": "78.46.16.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 931, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:05:05:57 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:50 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:17 +0000", "remote_ip": "108.176.232.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:50 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:31 +0000", "remote_ip": "54.79.114.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:05:05:29 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:40 +0000", "remote_ip": "206.224.96.244", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "18/May/2015:05:05:17 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:43 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:42 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:40 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:02 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:09 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:50 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:48 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:47 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:05:05:37 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:28 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:48 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:50 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:21 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:40 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:52 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:41 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:49 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:01 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:16 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:15 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:27 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:05 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:44 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:27 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:09 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:19 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:46 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:31 +0000", "remote_ip": "194.254.145.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 317, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:05:05:26 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:10 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:34 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:09 +0000", "remote_ip": "194.254.145.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:05:05:22 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "18/May/2015:05:05:41 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:45 +0000", "remote_ip": "194.254.145.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:05:05:05 +0000", "remote_ip": "194.254.145.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:05:05:26 +0000", "remote_ip": "194.254.145.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:05:05:19 +0000", "remote_ip": "194.254.145.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:05:05:48 +0000", "remote_ip": "194.254.145.253", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:05:05:25 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:21 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:43 +0000", "remote_ip": "62.210.88.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:19 +0000", "remote_ip": "62.210.88.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:29 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:41 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:33 +0000", "remote_ip": "62.210.88.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:45 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:35 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:25 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:40 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:17 +0000", "remote_ip": "62.210.88.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:41 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:40 +0000", "remote_ip": "62.210.88.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:41 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:33 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:29 +0000", "remote_ip": "62.210.88.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:10 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:41 +0000", "remote_ip": "62.210.88.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:22 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:45 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:09 +0000", "remote_ip": "62.210.88.174", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:36 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:05:05:19 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:26 +0000", "remote_ip": "129.67.27.48", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:05:05:58 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:05:05:00 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:48 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:05:05:54 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:24 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:47 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:32 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:05:05:52 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:44 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:09 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:05:05:30 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:01 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:51 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:45 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:38 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:05:05:40 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:29 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:47 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:05:05:25 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:05 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:14 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:00 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:15 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:05:05:59 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:05:05:48 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:42 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:06:05:20 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:03 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:05 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:12 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:06:05:47 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:13 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:02 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:45 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:06:05:57 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:14 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:25 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:05 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:23 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:06:05:13 +0000", "remote_ip": "108.61.251.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:06:05:14 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:06:05:22 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:06:05:49 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:06:05:09 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:06:05:28 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:06:05:26 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:15 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:58 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:23 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:15 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:54 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:12 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:36 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:23 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:02 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:19 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:12 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:39 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:25 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:01 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:47 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:30 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:10 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:01 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:54 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:44 +0000", "remote_ip": "54.92.198.204", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:06:05:20 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:39 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:42 +0000", "remote_ip": "78.46.114.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:20 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "18/May/2015:06:05:30 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:43 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:51 +0000", "remote_ip": "78.46.114.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:57 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:36 +0000", "remote_ip": "78.46.114.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:09 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:06:05:14 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:32 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:05 +0000", "remote_ip": "54.194.248.246", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:06:05:58 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:52 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:19 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:00 +0000", "remote_ip": "78.46.114.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:17 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:08 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:06:05:32 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:35 +0000", "remote_ip": "78.46.114.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:52 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:14 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:54 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:09 +0000", "remote_ip": "54.242.36.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:06:05:01 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:29 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:15 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:18 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:18 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:32 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:24 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:23 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:35 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:15 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:06:05:42 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:13 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:20 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:22 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:09 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:37 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:20 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:50 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:58 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:16 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:08 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:09 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:26 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:06:05:21 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:13 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:31 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:03 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:23 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:01 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:10 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:45 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:08 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:05 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:16 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "18/May/2015:06:05:24 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:31 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:56 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:06:05:49 +0000", "remote_ip": "124.205.129.97", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:07:05:14 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:58 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:07:05:07 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:43 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:15 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:32 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:29 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:19 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:05 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:56 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:46 +0000", "remote_ip": "222.205.101.33", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "18/May/2015:07:05:25 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "None"} +{"time": "18/May/2015:07:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:50 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:21 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:32 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:29 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:36 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:01 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:55 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:08 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:17 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:16 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:20 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:08 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:07 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:00 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:16 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:43 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:27 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:25 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:55 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:39 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:26 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:55 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:25 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:06 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:46 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:17 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:35 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:39 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:30 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:09 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:41 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:07:05:50 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:08 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:03 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:59 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:52 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:41 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:40 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:05 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:29 +0000", "remote_ip": "192.169.212.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:07:05:26 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:44 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:18 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:00 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:56 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:27 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:43 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:42 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:48 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:55 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:50 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:07:05:38 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:36 +0000", "remote_ip": "54.154.18.44", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:11 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:06 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:37 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:04 +0000", "remote_ip": "162.209.71.174", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:07:05:29 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:21 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:54 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:47 +0000", "remote_ip": "54.239.240.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:07:05:51 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:13 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:50 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:07 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:07:05:10 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:27 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:07:05:52 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:05 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:37 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:19 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:07:05:56 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:52 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:51 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:50 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:19 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:08 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:28 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:37 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:53 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:13 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:07:05:44 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:07:05:46 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:07:05:49 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:14 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:06 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:59 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:52 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:44 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:25 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:56 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:52 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:31 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:41 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:50 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:54 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:10 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:14 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:05 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:24 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:27 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:39 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:19 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:12 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:58 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:32 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:47 +0000", "remote_ip": "54.77.79.85", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:33 +0000", "remote_ip": "83.82.158.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:08:05:42 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:11 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:33 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:58 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:40 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:03 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:13 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:11 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:58 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:46 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:25 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:21 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:26 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:07 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:36 +0000", "remote_ip": "54.173.10.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:06 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:31 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:28 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:54 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:12 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:19 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:44 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:30 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:13 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:59 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:23 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:15 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:56 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:32 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:08:05:35 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:50 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:56 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:28 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:59 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:47 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:05 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:48 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:32 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:26 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:44 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:10 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:35 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:02 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:40 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:14 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:51 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:38 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:34 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:55 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:41 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:46 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:05 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:38 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:32 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:15 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:26 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:33 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:22 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:19 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:02 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:54 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:43 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:05 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:33 +0000", "remote_ip": "54.165.228.106", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:21 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:52 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:49 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:26 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:08 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:21 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:23 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:26 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:25 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:08:05:09 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:08:05:01 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:55 +0000", "remote_ip": "193.50.159.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:09 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:08:05:08 +0000", "remote_ip": "91.199.181.7", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "apt-cacher/1.7.6 libcurl/7.26.0 GnuTLS/2.12.20 zlib/1.2.7 libidn/1.25 libssh2/1.4.2 librtmp/2.3"} +{"time": "18/May/2015:08:05:59 +0000", "remote_ip": "54.79.5.99", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.8.2 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:08:05:12 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:08:05:22 +0000", "remote_ip": "74.205.124.155", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:08:05:06 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:08:05:33 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:31 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:02 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:44 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:43 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:42 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:24 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:37 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:51 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:17 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:38 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:37 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:09:05:45 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:55 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:04 +0000", "remote_ip": "108.61.219.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:09:05:23 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:36 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:08 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:17 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:37 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:30 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:47 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:57 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:03 +0000", "remote_ip": "148.251.193.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:55 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:08 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:58 +0000", "remote_ip": "148.251.193.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:47 +0000", "remote_ip": "62.160.32.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:09:05:24 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:38 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:42 +0000", "remote_ip": "148.251.193.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:30 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:48 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:09:05:50 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:35 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:08 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:42 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:24 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:20 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:36 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:03 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:39 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:40 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:48 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:37 +0000", "remote_ip": "192.118.71.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 64573584, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:09:05:54 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:10 +0000", "remote_ip": "5.9.120.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:51 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:45 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:54 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:50 +0000", "remote_ip": "54.89.168.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:09:05:58 +0000", "remote_ip": "5.9.120.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:37 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:35 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:29 +0000", "remote_ip": "5.9.120.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:12 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:03 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:31 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:09 +0000", "remote_ip": "5.9.120.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:04 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:50 +0000", "remote_ip": "66.179.75.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:09:05:06 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:51 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:20 +0000", "remote_ip": "5.9.120.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:04 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:33 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:10 +0000", "remote_ip": "5.9.120.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:29 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:45 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:48 +0000", "remote_ip": "5.9.120.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:10 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:03 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:42 +0000", "remote_ip": "5.9.120.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:53 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:04 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:49 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:26 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:25 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:58 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:40 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:04 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:52 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:56 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:13 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:31 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:32 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:46 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:51 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:16 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:39 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:14 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:05 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:15 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:09 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:42 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:11 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:30 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:34 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:08 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:23 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:42 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:47 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:19 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:46 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:57 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:42 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:05 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:18 +0000", "remote_ip": "198.199.127.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:31 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:40 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:43 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:24 +0000", "remote_ip": "54.196.151.120", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:09:05:43 +0000", "remote_ip": "5.9.143.77", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:51 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:22 +0000", "remote_ip": "198.199.127.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:24 +0000", "remote_ip": "144.160.98.93", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:29 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:24 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:19 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:24 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:18 +0000", "remote_ip": "144.160.98.93", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:20 +0000", "remote_ip": "5.9.143.77", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:41 +0000", "remote_ip": "54.80.240.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:09:05:57 +0000", "remote_ip": "198.199.127.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:08 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:40 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:32 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:42 +0000", "remote_ip": "144.160.98.93", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:09:05:06 +0000", "remote_ip": "54.154.22.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:09:05:53 +0000", "remote_ip": "5.9.143.77", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:07 +0000", "remote_ip": "198.199.127.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:28 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:14 +0000", "remote_ip": "144.160.98.93", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:21 +0000", "remote_ip": "78.109.87.141", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:17 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:43 +0000", "remote_ip": "5.9.143.77", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:39 +0000", "remote_ip": "144.160.98.93", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:42 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:23 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:08 +0000", "remote_ip": "198.199.127.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:20 +0000", "remote_ip": "212.224.102.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:00 +0000", "remote_ip": "144.160.98.93", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:09 +0000", "remote_ip": "5.9.143.77", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:52 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:21 +0000", "remote_ip": "144.160.98.93", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:09 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:31 +0000", "remote_ip": "198.199.127.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:07 +0000", "remote_ip": "5.9.143.77", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:13 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:38 +0000", "remote_ip": "198.199.127.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:10 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:08 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:07 +0000", "remote_ip": "5.9.143.77", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:33 +0000", "remote_ip": "198.199.127.211", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:59 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:34 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:20 +0000", "remote_ip": "5.9.143.77", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:35 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:34 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:07 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:31 +0000", "remote_ip": "54.69.193.75", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:10:05:35 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:36 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:58 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:00 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:20 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:31 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:47 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:18 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:34 +0000", "remote_ip": "198.232.218.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:10:05:09 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:19 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:06 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:39 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:03 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:21 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:27 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:03 +0000", "remote_ip": "62.210.74.60", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:37 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:27 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:38 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:46 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:35 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:55 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:51 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:45 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:46 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:29 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:07 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:47 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:52 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:06 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:01 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:11 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:35 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:36 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:18 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:16 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:52 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:26 +0000", "remote_ip": "54.171.141.205", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:10:05:27 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:40 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:39 +0000", "remote_ip": "54.244.37.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:10:05:58 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:00 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:15 +0000", "remote_ip": "54.244.37.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:10:05:52 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:07 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:26 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:29 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:45 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:56 +0000", "remote_ip": "54.191.82.244", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:10:05:13 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:10:05:37 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:49 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:10:05:59 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:40 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:57 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:50 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:08 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:39 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:17 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:20 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:22 +0000", "remote_ip": "209.81.95.196", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "18/May/2015:10:05:03 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:55 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:25 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:44 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:15 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:38 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:51 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:10:05:08 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:16 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:55 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:10 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:50 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:20 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:10:05:15 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:17 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:43 +0000", "remote_ip": "54.77.38.227", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:10:05:57 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:35 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:10:05:11 +0000", "remote_ip": "43.245.48.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:29 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:14 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:19 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:17 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:24 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:59 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:12 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:56 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:52 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:10 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:52 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:04 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:34 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:07 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:33 +0000", "remote_ip": "54.145.14.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:10:05:26 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:11:05:07 +0000", "remote_ip": "208.65.107.61", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:11:05:35 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:42 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:51 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:09 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:10 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:23 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:00 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:11 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:11:05:07 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:18 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:06 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:21 +0000", "remote_ip": "54.173.76.153", "remote_user": "-", "request": "GET /downloads/product_3 HTTP/1.1", "response": 200, "bytes": 1074306, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:11:05:27 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:11:05:16 +0000", "remote_ip": "54.173.76.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:11:05:33 +0000", "remote_ip": "198.211.102.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:56 +0000", "remote_ip": "198.211.102.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:19 +0000", "remote_ip": "198.211.102.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:13 +0000", "remote_ip": "198.211.102.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:11 +0000", "remote_ip": "198.211.102.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:37 +0000", "remote_ip": "198.211.102.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:31 +0000", "remote_ip": "198.211.102.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:07 +0000", "remote_ip": "198.211.102.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:23 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:11 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:39 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:49 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:32 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:27 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:02 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:29 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:54 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:21 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:12 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:43 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:44 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:39 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:19 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:13 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:52 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:56 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:03 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:56 +0000", "remote_ip": "104.156.226.8", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:11:05:09 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:41 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:12 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:01 +0000", "remote_ip": "184.106.13.231", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:54 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:11:05:50 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:46 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:50 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:20 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:32 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:37 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:42 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:41 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:14 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:12 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:21 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:44 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:59 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:45 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:18 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:07 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:27 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:07 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:23 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:51 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:17 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:51 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:14 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:26 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:21 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:44 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:42 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:55 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:01 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:37 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:11:05:12 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:52 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:32 +0000", "remote_ip": "144.76.81.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:01 +0000", "remote_ip": "144.76.81.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:25 +0000", "remote_ip": "144.76.81.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:04 +0000", "remote_ip": "144.76.81.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:01 +0000", "remote_ip": "144.76.81.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:11:05:40 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:56 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:22 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:21 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:20 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:28 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:55 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:03 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:40 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:26 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:20 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:11 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:43 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:18 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:36 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:56 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:15 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:19 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:26 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:01 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:00 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:05 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:12 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:49 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:37 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:07 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:19 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:00 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:48 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:11:05:26 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:24 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:11:05:52 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:04 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:26 +0000", "remote_ip": "54.87.184.208", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:12:05:10 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:00 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:34 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:27 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:52 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:46 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:33 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:23 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:36 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:37 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:13 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:56 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:50 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:57 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:51 +0000", "remote_ip": "54.72.188.64", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:12:05:38 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:22 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:00 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:46 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:58 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:52 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:45 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:19 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:54 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:10 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:53 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:22 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:07 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:53 +0000", "remote_ip": "199.38.183.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:09 +0000", "remote_ip": "142.150.190.67", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/10.32.2 (ruby-1.9.3-p484; ohai-6.22.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:12:05:01 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:02 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:21 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:46 +0000", "remote_ip": "10.47.15.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "18/May/2015:12:05:24 +0000", "remote_ip": "199.80.55.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:12:05:06 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:21 +0000", "remote_ip": "199.80.55.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3531, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:12:05:35 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:20 +0000", "remote_ip": "54.79.61.8", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:12:05:48 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:11 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:10 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:57 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:54 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:13 +0000", "remote_ip": "108.61.168.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:12:05:06 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:59 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:51 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:44 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:41 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:53 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:00 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:45 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:30 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:37 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:14 +0000", "remote_ip": "5.35.254.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:12:05:34 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:57 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:32 +0000", "remote_ip": "54.154.25.224", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:20 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:37 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:35 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:34 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:35 +0000", "remote_ip": "130.117.40.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:12:05:36 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:16 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:04 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:50 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:52 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:12:05:05 +0000", "remote_ip": "204.78.58.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:12:05:28 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:53 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:42 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:53 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:44 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:17 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:12:05:28 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:22 +0000", "remote_ip": "216.139.222.188", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:12:05:41 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:02 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:46 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:07 +0000", "remote_ip": "216.139.222.188", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:12:05:00 +0000", "remote_ip": "104.156.244.36", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:12:05:40 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:29 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:20 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:19 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:03 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:29 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:41 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:24 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:45 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:40 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:49 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:19 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:28 +0000", "remote_ip": "162.13.95.54", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:12:05:50 +0000", "remote_ip": "104.200.29.252", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:12:05:43 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:44 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:43 +0000", "remote_ip": "50.97.227.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:12:05:42 +0000", "remote_ip": "104.200.29.252", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:13:05:19 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:13:05:52 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:13:05:42 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:13:05:54 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:13:05:48 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:13:05:57 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:13:05:21 +0000", "remote_ip": "54.154.73.33", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:13:05:08 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:13:05:45 +0000", "remote_ip": "54.207.57.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:13:05:38 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:33 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:36 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:58 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:21 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:23 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:44 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:55 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:39 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:43 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:30 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:37 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:44 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:51 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:14 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:34 +0000", "remote_ip": "27.36.242.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 18497035, "referrer": "-", "agent": "Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0)"} +{"time": "18/May/2015:13:05:07 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:50 +0000", "remote_ip": "54.79.61.8", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:13:05:52 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:06 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:27 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:44 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:13 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:12 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:15 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:13 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:26 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:25 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:13:05:30 +0000", "remote_ip": "54.154.73.33", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:13:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:30 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:49 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:32 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:15 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:58 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:54 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:19 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:01 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:49 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:35 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:57 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:54 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:49 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:12 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:44 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:54 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:24 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:38 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:01 +0000", "remote_ip": "54.194.110.66", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:13:05:55 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:16 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:31 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:00 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:07 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:15 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:54 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:20 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:56 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:49 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:40 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:56 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:14 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:07 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:58 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:55 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:22 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:24 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:41 +0000", "remote_ip": "109.190.90.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.12.1)"} +{"time": "18/May/2015:13:05:17 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:42 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:30 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:17 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:37 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:03 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:59 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:30 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:27 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:18 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:25 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:00 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:21 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:50 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:29 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:17 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:26 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:35 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:13:05:06 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:51 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:50 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:14 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:59 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:39 +0000", "remote_ip": "54.194.110.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:14:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:34 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:22 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:45 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:15 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:24 +0000", "remote_ip": "83.103.77.3", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:14:05:34 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:39 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:58 +0000", "remote_ip": "83.103.77.3", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1464, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:14:05:26 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:30 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:54 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:22 +0000", "remote_ip": "83.103.77.3", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1769, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:14:05:56 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:51 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:16 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:24 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:31 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:37 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:11 +0000", "remote_ip": "83.103.77.3", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 572, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:14:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:17 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:12 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:42 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:08 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:21 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:39 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:06 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:42 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:48 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:13 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:19 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:32 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:03 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:16 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:48 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:20 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:05 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:36 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:10 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:01 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:43 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:48 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:55 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:39 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:22 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:37 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:03 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:05 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:36 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:52 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:29 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:52 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:09 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:25 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:37 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:02 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:50 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:14:05:42 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:06 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:28 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:03 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:25 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:36 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:53 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:07 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:57 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:51 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:14:05:24 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:48 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:01 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:16 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:02 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:21 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:43 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:37 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:51 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:41 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:27 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:43 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "18/May/2015:14:05:05 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:35 +0000", "remote_ip": "54.208.136.31", "remote_user": "-", "request": "GET /downloads/product_3 HTTP/1.1", "response": 200, "bytes": 991116, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:14:05:42 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:08 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:14:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:10 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:20 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:38 +0000", "remote_ip": "205.172.172.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:14:05:36 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3316, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:14:05:23 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:30 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:56 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:50 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:14:05:30 +0000", "remote_ip": "54.194.199.46", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:14:05:36 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:55 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:14:05:33 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:48 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:14:05:39 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:56 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:14:05:42 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:03 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:01 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:59 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:34 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:14:05:49 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:16 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:49 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:59 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:55 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:17 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:46 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:23 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:01 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:59 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:16 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:23 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:30 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:33 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:34 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:58 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:52 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:13 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:35 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:06 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:23 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:01 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:48 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:57 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:10 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:39 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:46 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:37 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:04 +0000", "remote_ip": "54.194.199.46", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:15:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:57 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:13 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:36 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:25 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:21 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:05 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:50 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:01 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:15:05:25 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:03 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:45 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:12 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:05 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:48 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:59 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:56 +0000", "remote_ip": "54.64.114.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:09 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:27 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:13 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:00 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:22 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:55 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:17 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:32 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:10 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:04 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:15:05:43 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:06 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:27 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:05 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:30 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:52 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:59 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:33 +0000", "remote_ip": "23.23.242.203", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 69015367, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:15:05:48 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:34 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:19 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:43 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:09 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:06 +0000", "remote_ip": "85.10.255.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.14.0.0 zlib/1.2.3 libidn/1.18 libssh2/1.4.2"} +{"time": "18/May/2015:15:05:03 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:18 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:55 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:26 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:39 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:24 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:16 +0000", "remote_ip": "176.58.90.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:31 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:13 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:27 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:32 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:16 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:17 +0000", "remote_ip": "54.216.140.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:15:05:13 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:38 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:41 +0000", "remote_ip": "54.216.140.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:15:05:45 +0000", "remote_ip": "54.216.140.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:15:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:11 +0000", "remote_ip": "54.216.140.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:15:05:48 +0000", "remote_ip": "54.216.140.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:15:05:03 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:15:05:53 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:24 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:13 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:03 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:56 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:22 +0000", "remote_ip": "54.216.140.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:15:05:31 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:53 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:28 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:10 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:48 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:38 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:44 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:15:05:05 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:56 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:23 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:47 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:01 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:28 +0000", "remote_ip": "54.216.140.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:15:05:24 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:15:05:20 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:05 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:32 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:12 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:31 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:41 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:15 +0000", "remote_ip": "54.77.114.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:37 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:03 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:27 +0000", "remote_ip": "54.205.61.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:54 +0000", "remote_ip": "54.216.140.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:48 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:06 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:05 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:16:05:24 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:18 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:31 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:20 +0000", "remote_ip": "54.211.125.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:27 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:28 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:16:05:00 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:16:05:40 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:05 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:55 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:16:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:34 +0000", "remote_ip": "54.229.26.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:16:05:29 +0000", "remote_ip": "37.59.11.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.7.11"} +{"time": "18/May/2015:16:05:36 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:16 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:32 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:56 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:48 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:32 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:13 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:56 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:48 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:26 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:53 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:23 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:22 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:30 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:07 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:50 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:43 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:04 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:06 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:22 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:00 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:32 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:46 +0000", "remote_ip": "192.73.252.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:16:05:08 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:21 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:57 +0000", "remote_ip": "54.194.175.38", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:16:05:49 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:40 +0000", "remote_ip": "54.229.26.32", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:16:05:23 +0000", "remote_ip": "54.194.175.38", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:16:05:29 +0000", "remote_ip": "2001:4801:7824:102:8bee:6e66:ff10:6aa2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:16:05:23 +0000", "remote_ip": "54.148.106.42", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26930866, "referrer": "-", "agent": "Chef Client/12.0.1 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:16:05:29 +0000", "remote_ip": "2a01:7e00::f03c:91ff:fe70:a4cc", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 86166026, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "18/May/2015:16:05:12 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "18/May/2015:16:05:32 +0000", "remote_ip": "78.47.40.226", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:56 +0000", "remote_ip": "54.194.179.232", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:16:05:08 +0000", "remote_ip": "78.47.40.226", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:22 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:57 +0000", "remote_ip": "78.47.40.226", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:17 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:00 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:33 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:21 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:53 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:58 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:02 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:26 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:31 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:48 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:32 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:47 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:09 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:54 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:05 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:30 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:53 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:06 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:25 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:23 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:46 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:44 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:51 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:40 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:50 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:37 +0000", "remote_ip": "212.64.148.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:16:05:50 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:02 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:44 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:48 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:18 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:06 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:39 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:52 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:03 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:43 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:28 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:15 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:30 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:21 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:11 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:22 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:52 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:36 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:14 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:48 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:31 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:19 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:59 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:16:05:39 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:10 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:16:05:55 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:16:05:37 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:16:05:58 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:28 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:19 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:37 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:41 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:34 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:57 +0000", "remote_ip": "46.105.156.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:24 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:43 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:01 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:23 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:42 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:35 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:41 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:48 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:00 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:13 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:16 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:35 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:37 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:19 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:02 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:38 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:56 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:38 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:26 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:04 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:40 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:54 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:23 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:50 +0000", "remote_ip": "54.194.179.232", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:10 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:08 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:49 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:36 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:45 +0000", "remote_ip": "101.162.63.76", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:19 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:47 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:06 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:38 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:01 +0000", "remote_ip": "74.114.132.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "18/May/2015:17:05:57 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:02 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:43 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:09 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:00 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:24 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:10 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:23 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:43 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:01 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:40 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:46 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:10 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:06 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:18 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:14 +0000", "remote_ip": "209.177.145.34", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:17:05:38 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:31 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:21 +0000", "remote_ip": "54.76.129.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:04 +0000", "remote_ip": "208.65.107.61", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:17:05:10 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:59 +0000", "remote_ip": "54.76.129.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:08 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:30 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:45 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:55 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:44 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:18 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:56 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:51 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:32 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:10 +0000", "remote_ip": "54.72.102.109", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:35 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:45 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:55 +0000", "remote_ip": "167.114.0.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:59 +0000", "remote_ip": "54.154.108.221", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:32 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "18/May/2015:17:05:18 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:17:05:50 +0000", "remote_ip": "194.124.140.39", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Mozilla/4.0 (compatible;)"} +{"time": "18/May/2015:17:05:26 +0000", "remote_ip": "91.121.136.148", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:17:05:27 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:43 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:10 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:43 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:59 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:27 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:10 +0000", "remote_ip": "54.154.95.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:26 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:15 +0000", "remote_ip": "54.72.102.109", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:02 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:08 +0000", "remote_ip": "54.70.228.177", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:17:05:00 +0000", "remote_ip": "91.121.136.148", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:17:05:31 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:36 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:01 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:45 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:17 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:56 +0000", "remote_ip": "188.40.68.69", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:19 +0000", "remote_ip": "188.40.68.69", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:38 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:04 +0000", "remote_ip": "188.40.68.69", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:54 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:00 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:48 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:32 +0000", "remote_ip": "54.173.112.2", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:48 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:17:05:19 +0000", "remote_ip": "54.154.95.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:17:05:02 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:54 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:17:05:30 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:17:05:34 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:17:05:56 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:17:05:55 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:17:05:27 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:17:05:40 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:17:05:55 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:17:05:35 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:17:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:17:05:26 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:17:05:17 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:17:05:35 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:22 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:25 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:14 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:02 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:23 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:18:05:32 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:18:05:36 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:47 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:18:05:41 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:18:05:06 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:49 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:18:05:09 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:16 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:54 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:50 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:01 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:53 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:46 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:23 +0000", "remote_ip": "10.88.9.40", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:29 +0000", "remote_ip": "148.251.138.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 182, "referrer": "-", "agent": "Apache-HttpClient/4.3.5 (java 1.5)"} +{"time": "18/May/2015:18:05:34 +0000", "remote_ip": "184.168.128.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:18:05:17 +0000", "remote_ip": "148.251.138.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 596854, "referrer": "-", "agent": "Java/1.8.0_25"} +{"time": "18/May/2015:18:05:22 +0000", "remote_ip": "185.7.176.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "18/May/2015:18:05:01 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:37 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:46 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:44 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:17 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:21 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:06 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:01 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:41 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:16 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:38 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:16 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:58 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:46 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:52 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:43 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:35 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:47 +0000", "remote_ip": "173.192.228.131", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:18:05:02 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:55 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:03 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:50 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:29 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:16 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:35 +0000", "remote_ip": "212.71.253.198", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:04 +0000", "remote_ip": "2001:4802:7801:102:8bee:6e66:ff20:3db9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:18:05:18 +0000", "remote_ip": "178.218.166.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:18:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:35 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:56 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:10 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:15 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:41 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:49 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:58 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:47 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:07 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:27 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:08 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:00 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:27 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:00 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:39 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:57 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:27 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:18:05:29 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:48 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:54 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:14 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:58 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:27 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:25 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:13 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:38 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:29 +0000", "remote_ip": "107.170.59.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:40 +0000", "remote_ip": "148.251.193.164", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:47 +0000", "remote_ip": "148.251.193.164", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:56 +0000", "remote_ip": "148.251.131.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:38 +0000", "remote_ip": "148.251.193.164", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:59 +0000", "remote_ip": "148.251.131.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:25 +0000", "remote_ip": "148.251.131.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:26 +0000", "remote_ip": "148.251.131.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:20 +0000", "remote_ip": "148.251.131.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:35 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:58 +0000", "remote_ip": "148.251.131.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:18 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:30 +0000", "remote_ip": "148.251.131.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:52 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:40 +0000", "remote_ip": "148.251.131.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:45 +0000", "remote_ip": "54.229.5.65", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:18:05:11 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:18 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:45 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:09 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:35 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:04 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:43 +0000", "remote_ip": "148.251.131.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:26 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:39 +0000", "remote_ip": "148.251.131.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:45 +0000", "remote_ip": "93.94.224.131", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:18:05:22 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:20 +0000", "remote_ip": "148.251.131.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:52 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:27 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:07 +0000", "remote_ip": "148.251.131.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:04 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:20 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:18 +0000", "remote_ip": "148.251.131.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:05 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:11 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:09 +0000", "remote_ip": "148.251.131.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:12 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:22 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:19 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:33 +0000", "remote_ip": "148.251.131.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:40 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:17 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:18:05:54 +0000", "remote_ip": "148.251.131.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:59 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:18:05:58 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:33 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:43 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:27 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:18 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:29 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:52 +0000", "remote_ip": "195.145.19.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:42 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:10 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:13 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:53 +0000", "remote_ip": "54.229.5.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:19:05:12 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:17 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:50 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "18/May/2015:19:05:08 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:45 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:21 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:58 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:16 +0000", "remote_ip": "143.210.16.140", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:12 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:49 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:01 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:56 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:07 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:33 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:07 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:28 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:15 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:17 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:32 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:50 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:44 +0000", "remote_ip": "54.173.6.142", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:19:05:54 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:01 +0000", "remote_ip": "142.103.203.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:19:05:38 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:54 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:32 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:20 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:01 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:12 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:54 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:55 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:14 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:47 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:35 +0000", "remote_ip": "148.251.138.133", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 360, "referrer": "-", "agent": "Java/1.8.0_25"} +{"time": "18/May/2015:19:05:28 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:19 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:59 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:23 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:25 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:04 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:21 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:13 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:41 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:51 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:21 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:39 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:55 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:03 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:48 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:55 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:34 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:09 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:06 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:19:05:03 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:38 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:13 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:30 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:40 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:46 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:59 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:13 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:02 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:17 +0000", "remote_ip": "78.47.25.110", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:19:05:41 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:18 +0000", "remote_ip": "78.47.25.110", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:19:05:36 +0000", "remote_ip": "78.47.25.110", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:19:05:44 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:35 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:48 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:19:05:12 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:46 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:41 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:34 +0000", "remote_ip": "78.47.25.110", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:19:05:06 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:30 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:08 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:23 +0000", "remote_ip": "54.173.6.142", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:19:05:50 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:19 +0000", "remote_ip": "78.47.25.110", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:19:05:37 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:15 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:34 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:32 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:30 +0000", "remote_ip": "78.47.25.110", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:19:05:12 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:03 +0000", "remote_ip": "212.73.212.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:53 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:59 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:58 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:13 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:30 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:16 +0000", "remote_ip": "85.133.69.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:19:05:17 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:56 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:37 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:01 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:08 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:09 +0000", "remote_ip": "83.169.62.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:19:05:39 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:02 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:36 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:08 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:56 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:41 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:45 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:57 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:19:05:24 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:14 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:42 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:19:05:15 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:03 +0000", "remote_ip": "54.239.240.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:20:05:41 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:58 +0000", "remote_ip": "54.91.6.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "18/May/2015:20:05:11 +0000", "remote_ip": "54.91.6.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "18/May/2015:20:05:57 +0000", "remote_ip": "54.91.6.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "18/May/2015:20:05:25 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:05 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:11 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:21 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:40 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:23 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:15 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:04 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:41 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:22 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:34 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:26 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:59 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:12 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:22 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:20:05:23 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:20:05:13 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:20:05:08 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:20:05:52 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "18/May/2015:20:05:41 +0000", "remote_ip": "108.61.126.51", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:20:05:59 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:10 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:30 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:36 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:54 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:21 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:46 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:37 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:48 +0000", "remote_ip": "54.206.71.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:20:05:19 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:32 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:50 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:30 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:28 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:36 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:00 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:38 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:33 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:19 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:09 +0000", "remote_ip": "173.203.157.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "18/May/2015:20:05:31 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:42 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:01 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:42 +0000", "remote_ip": "88.86.121.55", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "18/May/2015:20:05:17 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:29 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:20 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:47 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:14 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:15 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:17 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:55 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:59 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:20:05:03 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:08 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:15 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:18 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:20:05:02 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:45 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:25 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:06 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:23 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:19 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:47 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:28 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:14 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:46 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:20:05:34 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "18/May/2015:20:05:25 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "18/May/2015:20:05:10 +0000", "remote_ip": "54.173.6.142", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:20:05:50 +0000", "remote_ip": "54.173.6.142", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:20:05:05 +0000", "remote_ip": "54.172.82.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:20:05:38 +0000", "remote_ip": "148.251.1.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 931, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "18/May/2015:20:05:10 +0000", "remote_ip": "2a01:7e00::f03c:91ff:fe70:a4cc", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 45136404, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "18/May/2015:20:05:27 +0000", "remote_ip": "2001:4802:7802:104:be76:4eff:fe20:82cc", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:20:05:57 +0000", "remote_ip": "54.165.245.160", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.0 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:20:05:38 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:08 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:16 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:58 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:48 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:25 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:55 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:22 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:05 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:53 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:01 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:22 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:21 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:02 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:58 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:30 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:12 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:28 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:03 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:17 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:32 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:37 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:53 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:26 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:39 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:33 +0000", "remote_ip": "54.80.205.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:47 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:34 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:36 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:44 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:20:05:33 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:17 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:33 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:42 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:22 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:00 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:55 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:06 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:43 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:55 +0000", "remote_ip": "50.126.69.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:39 +0000", "remote_ip": "78.137.97.209", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:21:05:43 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:21:05:39 +0000", "remote_ip": "208.65.107.104", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.10.4 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:21:05:46 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:20 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:57 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:45 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:31 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:43 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:54 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:40 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:54 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:16 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:37 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:42 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:31 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:20 +0000", "remote_ip": "54.85.59.129", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:24 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:30 +0000", "remote_ip": "54.239.240.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:21:05:27 +0000", "remote_ip": "95.128.36.63", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:21:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:51 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:44 +0000", "remote_ip": "95.128.36.63", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:21:05:22 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:02 +0000", "remote_ip": "54.173.216.32", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:21:05:21 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:55 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:39 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:21:05:32 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:10 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:40 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:31 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:15 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:13 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "18/May/2015:21:05:48 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:31 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:32 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:25 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:51 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:31 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:00 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:25 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:15 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:22 +0000", "remote_ip": "54.89.47.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:43 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:22 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:48 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:47 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:53 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:44 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:19 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:36 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:23 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:29 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:50 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:47 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:45 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:37 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:13 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:11 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:46 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:53 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:36 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "18/May/2015:21:05:00 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:21:05:11 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:21:05:45 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:21:05:41 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:21:05:54 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:21:05:58 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:21:05:48 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:21:05:28 +0000", "remote_ip": "198.199.71.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:21:05:39 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:44 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:06 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:02 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:12 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:16 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:01 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:20 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:26 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:09 +0000", "remote_ip": "54.91.99.117", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:19 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:33 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:31 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:38 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:16 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:36 +0000", "remote_ip": "54.68.154.224", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26930866, "referrer": "-", "agent": "Chef Client/12.0.1 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:21:05:01 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:41 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:51 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:07 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:09 +0000", "remote_ip": "205.147.105.127", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:56 +0000", "remote_ip": "149.210.144.164", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "18/May/2015:21:05:04 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:16 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:48 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:13 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:28 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:57 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:10 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:09 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:12 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:32 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:07 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:16 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:21:05:15 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:06 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:07 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:21:05:09 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:00 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:05 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:21:05:45 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:22:05:25 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:12 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:25 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:39 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:22:05:03 +0000", "remote_ip": "192.73.243.59", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:18 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:22:05:30 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:22:05:03 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:56 +0000", "remote_ip": "85.17.217.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "18/May/2015:22:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:42 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:03 +0000", "remote_ip": "54.191.143.127", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "18/May/2015:22:05:30 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:06 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:52 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:00 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:01 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:19 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:35 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:12 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:14 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:19 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:12 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:15 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:44 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:12 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:09 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:32 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:16 +0000", "remote_ip": "12.149.174.11", "remote_user": "-", "request": "GET /downloads/product_3 HTTP/1.1", "response": 200, "bytes": 1108666, "referrer": "-", "agent": "Chef Client/11.16.0 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:22:05:37 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:54 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:49 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:40 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:45 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:51 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:56 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:22 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:59 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:49 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:15 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:16 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:31 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:49 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:55 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:35 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:01 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:40 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:13 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:43 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:15 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:40 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:24 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:52 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:17 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:10 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:59 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:00 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:40 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:39 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:54 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:07 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:36 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:29 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:13 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:43 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:53 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:07 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:47 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:25 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:04 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:48 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:24 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:55 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:32 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:04 +0000", "remote_ip": "24.178.232.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 19106185, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "18/May/2015:22:05:05 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:06 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:20 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:03 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:14 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:36 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:21 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:04 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:42 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:06 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:35 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:21 +0000", "remote_ip": "69.20.70.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:11 +0000", "remote_ip": "84.254.114.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:22:05:34 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:46 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:25 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:12 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:57 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:14 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:42 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:12 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:19 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:27 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:59 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:21 +0000", "remote_ip": "143.210.16.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:22:05:39 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:08 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:50 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:23 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:14 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:29 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:09 +0000", "remote_ip": "150.252.134.118", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "18/May/2015:22:05:08 +0000", "remote_ip": "50.97.227.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "18/May/2015:22:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:51 +0000", "remote_ip": "150.252.134.118", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "18/May/2015:22:05:42 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:22:05:07 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:21 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:04 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:34 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:05 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:12 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:45 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:46 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:47 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:22:05:26 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:01 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:20 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:01 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:57 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:34 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:08 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:56 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:26 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:52 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:29 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:38 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:20 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:28 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:33 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:48 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:40 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:30 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:50 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:23 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:05 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:38 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:43 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:13 +0000", "remote_ip": "192.184.80.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:23:05:03 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:04 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:43 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:56 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:18 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:19 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:59 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:10 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:35 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:39 +0000", "remote_ip": "54.72.81.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "18/May/2015:23:05:41 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:16 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:21 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:03 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:13 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:34 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:52 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:16 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:28 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:31 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:19 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:47 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:23 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:58 +0000", "remote_ip": "192.184.80.62", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "18/May/2015:23:05:25 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:50 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:04 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:03 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:02 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:58 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:50 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:39 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:18 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:45 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:34 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:48 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:33 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:32 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:47 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:57 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:50 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:21 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:54 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:35 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:17 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:07 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:09 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:59 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:00 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:52 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:31 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:16 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:28 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:02 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:51 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:20 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:52 +0000", "remote_ip": "5.9.28.15", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "18/May/2015:23:05:36 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:57 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:18 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:08 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:09 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:17 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:21 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:24 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:27 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:04 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:16 +0000", "remote_ip": "50.56.33.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "18/May/2015:23:05:35 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:57 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:56 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:33 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:34 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:33 +0000", "remote_ip": "10.88.11.190", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:14 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:00 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:30 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "18/May/2015:23:05:37 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:32 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:49 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:38 +0000", "remote_ip": "54.171.168.227", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "18/May/2015:23:05:26 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:46 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:20 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:15 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:59 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:10 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:29 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:02 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:33 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:09 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:36 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:50 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:45 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:46 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:59 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:08 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:29 +0000", "remote_ip": "109.67.162.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "18/May/2015:23:05:53 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "18/May/2015:23:05:45 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:38 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:31 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:22 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:07 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:27 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:30 +0000", "remote_ip": "212.23.1.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:58 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:59 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:20 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:39 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:00 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:02 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:06 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:49 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:31 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:46 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:02 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:16 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:02 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:44 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:28 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:49 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:34 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:56 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:29 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:16 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:33 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:32 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:05 +0000", "remote_ip": "144.76.68.247", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:55 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:22 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:16 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:42 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:44 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:22 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:01 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:04 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:24 +0000", "remote_ip": "176.58.90.77", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:07 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:06 +0000", "remote_ip": "54.191.220.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:00:05:03 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:50 +0000", "remote_ip": "109.234.3.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:56 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:14 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:50 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:23 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:59 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:34 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:41 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:13 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:29 +0000", "remote_ip": "107.170.186.220", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.12.4 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:00:05:36 +0000", "remote_ip": "54.189.190.210", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:41 +0000", "remote_ip": "93.188.104.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:00:05:19 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:00:05:05 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:39 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:30 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:33 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:31 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:43 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:22 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:09 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:04 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:02 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:06 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:31 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:30 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:49 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:36 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:09 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:38 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:50 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:05 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:41 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:23 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:02 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:33 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:22 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:06 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:12 +0000", "remote_ip": "144.76.239.42", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:00:05:50 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:40 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:25 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:24 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:12 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:48 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:58 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:06 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:40 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:56 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:33 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:23 +0000", "remote_ip": "108.61.168.43", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:00:05:32 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:36 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:45 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:55 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:35 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:29 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:00:05:02 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:23 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:47 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:42 +0000", "remote_ip": "143.210.16.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:38 +0000", "remote_ip": "184.168.128.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:00:05:02 +0000", "remote_ip": "85.17.231.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:54 +0000", "remote_ip": "85.17.231.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:34 +0000", "remote_ip": "85.17.231.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:28 +0000", "remote_ip": "193.143.201.118", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:00:05:21 +0000", "remote_ip": "85.17.231.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:01 +0000", "remote_ip": "85.17.231.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:09 +0000", "remote_ip": "85.17.231.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:10 +0000", "remote_ip": "85.17.231.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:46 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:00:05:51 +0000", "remote_ip": "85.17.231.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:00:05:39 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:24 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:07 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:15 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:39 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:46 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:11 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:38 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:58 +0000", "remote_ip": "184.173.149.16", "remote_user": "-", "request": "HEAD /downloads/product_2 HTTP/1.1", "response": 403, "bytes": 0, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "19/May/2015:01:05:47 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:01:05:06 +0000", "remote_ip": "64.38.238.148", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2573, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:01:05:43 +0000", "remote_ip": "192.195.66.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:01:05:19 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:43 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:15 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:07 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:58 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:12 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:18 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:56 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:27 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:08 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:51 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:59 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:49 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:55 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:03 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:00 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:18 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:57 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:25 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.12)"} +{"time": "19/May/2015:01:05:01 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:56 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:33 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:06 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:40 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:00 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:49 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:18 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:34 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:51 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:52 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:01:05:53 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:14 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:47 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:50 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:57 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:05 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:11 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:56 +0000", "remote_ip": "188.215.38.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:01:05:47 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:12 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:20 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:19 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:48 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:22 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:01:05:19 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:01:05:02 +0000", "remote_ip": "54.165.29.107", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:01:05:14 +0000", "remote_ip": "54.242.253.145", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:01:05:54 +0000", "remote_ip": "130.211.185.90", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:01:05:26 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:28 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:24 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:06 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:14 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:11 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:05 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:33 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:59 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:49 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:42 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:50 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:56 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:50 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:01:05:11 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:46 +0000", "remote_ip": "199.38.183.154", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:06 +0000", "remote_ip": "192.184.80.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:01:05:48 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:41 +0000", "remote_ip": "192.184.80.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3217, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:01:05:04 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:57 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:39 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:57 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:34 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:21 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:38 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:31 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:00 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:43 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:01 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:08 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:13 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:45 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:16 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:30 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:13 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:10 +0000", "remote_ip": "54.148.106.42", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26930866, "referrer": "-", "agent": "Chef Client/12.0.0 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:01:05:17 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:51 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:04 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:17 +0000", "remote_ip": "192.184.80.62", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:01:05:39 +0000", "remote_ip": "192.184.80.62", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:01:05:37 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:41 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:26 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:25 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:46 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:38 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:45 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:04 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:26 +0000", "remote_ip": "208.68.163.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 19244140, "referrer": "-", "agent": "Chef Client/10.18.2 (ruby-1.8.7-p249; ohai-6.16.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:01:05:36 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:56 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:44 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:42 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:56 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:58 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:05 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:45 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:55 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:14 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:45 +0000", "remote_ip": "37.58.92.193", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.10)"} +{"time": "19/May/2015:01:05:18 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:01:05:28 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:01:05:34 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:11 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:56 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:45 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:18 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:52 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:22 +0000", "remote_ip": "54.217.244.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:21 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:51 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:28 +0000", "remote_ip": "54.79.43.16", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:09 +0000", "remote_ip": "107.23.71.134", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:02:05:20 +0000", "remote_ip": "54.85.214.32", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:02:05:14 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:48 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:45 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:13 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:29 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:02 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:17 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:38 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:44 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:15 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:55 +0000", "remote_ip": "54.80.48.146", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/10.34.4 (ruby-1.9.3-p547; ohai-6.24.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:02:05:22 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:02:05:58 +0000", "remote_ip": "74.205.117.244", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:02:05:11 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:26 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:12 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:39 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:03 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:59 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:57 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:15 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:56 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:08 +0000", "remote_ip": "74.123.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.9.1~ubuntu1)"} +{"time": "19/May/2015:02:05:12 +0000", "remote_ip": "12.196.121.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "None"} +{"time": "19/May/2015:02:05:32 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:14 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:33 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:07 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:02:05:51 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:01 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:47 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:46 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:57 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:12 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:26 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:25 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:06 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:03 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:15 +0000", "remote_ip": "205.144.162.130", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:02:05:14 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:31 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:17 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:23 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:07 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:52 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:05 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:46 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:26 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:40 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:02:05:10 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:31 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:58 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:08 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:25 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:08 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:06 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:16 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:56 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:52 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:06 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:36 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:19 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:24 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:33 +0000", "remote_ip": "143.210.16.81", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:02:05:07 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:15 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:40 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:11 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:43 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:25 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:17 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:41 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:34 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:30 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:43 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:54 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:31 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:21 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:44 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:56 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:42 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:14 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:26 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:58 +0000", "remote_ip": "199.38.183.217", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:02:05:48 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:37 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:07 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:50 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:37 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:25 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:59 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:01 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:56 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:52 +0000", "remote_ip": "107.22.90.18", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:02:05:34 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:47 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:30 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:02:05:14 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:04 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:45 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:04 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:18 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:00 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:51 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:43 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:27 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:32 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:20 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:50 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:12 +0000", "remote_ip": "23.92.103.199", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:36 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:39 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:05 +0000", "remote_ip": "54.165.73.236", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.14.6 (ruby-1.9.3-p484; ohai-7.2.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:03:05:51 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:15 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:31 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:25 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:36 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:03 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:34 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:25 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:52 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:25 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:54 +0000", "remote_ip": "54.69.195.209", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:03:05:17 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:59 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:03:05:50 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:03:05:13 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:47 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:42 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:16 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:21 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:02 +0000", "remote_ip": "198.22.178.21", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:03:05:19 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:38 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:46 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:09 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:13 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.7)"} +{"time": "19/May/2015:03:05:04 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:50 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:30 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:21 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:20 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:16 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:19 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:21 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:29 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:28 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:23 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:22 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:00 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:32 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:47 +0000", "remote_ip": "92.238.56.98", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10.1 yum/3.4.3"} +{"time": "19/May/2015:03:05:33 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:09 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:46 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:17 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:02 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:09 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:18 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:27 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:51 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:59 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:27 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:22 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:25 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:48 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:46 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:44 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:51 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:46 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:24 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:32 +0000", "remote_ip": "10.16.64.17", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:03 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:33 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:00 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:23 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:09 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:24 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:05 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:34 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:57 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:58 +0000", "remote_ip": "54.194.93.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:03:05:28 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:22 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:21 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:47 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:05 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:33 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:15 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:57 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:52 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:15 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:07 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:14 +0000", "remote_ip": "37.187.101.43", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:27 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:36 +0000", "remote_ip": "144.76.4.49", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:10 +0000", "remote_ip": "104.131.9.124", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:03:05:34 +0000", "remote_ip": "125.160.110.136", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26319010, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:03:05:11 +0000", "remote_ip": "198.58.75.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 19867444, "referrer": "-", "agent": "Chef Client/11.10.0 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:03:05:20 +0000", "remote_ip": "104.131.9.124", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:03:05:05 +0000", "remote_ip": "209.81.95.196", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:03:05:24 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:38 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:17 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:14 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:03:05:06 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:03:05:01 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:13 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:03:05:44 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:03:05:53 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:03:05:04 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:03:05:14 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:04:05:07 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:04:05:55 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:15 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:04:05:33 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:04:05:45 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:27 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:04:05:41 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:30 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:32 +0000", "remote_ip": "54.164.89.23", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:04:05:47 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:59 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:49 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:16 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:45 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:38 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:47 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:37 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:39 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:52 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:04:05:47 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:17 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:24 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:57 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:36 +0000", "remote_ip": "148.251.69.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:06 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:35 +0000", "remote_ip": "104.130.12.114", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:04:05:54 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:20 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:45 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:00 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:51 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:39 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:25 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:08 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:16 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:32 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:35 +0000", "remote_ip": "54.220.73.255", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3060803, "referrer": "-", "agent": "Wget/1.14 (linux-gnu)"} +{"time": "19/May/2015:04:05:53 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:41 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:43 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:50 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:52 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:11 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:43 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:35 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:59 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:05 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:45 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:04:05:35 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:36 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:00 +0000", "remote_ip": "54.195.81.69", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3060803, "referrer": "-", "agent": "Wget/1.14 (linux-gnu)"} +{"time": "19/May/2015:04:05:42 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:38 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:54 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:28 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:35 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:48 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:14 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:42 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:01 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:17 +0000", "remote_ip": "93.94.224.131", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:04:05:02 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:06 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:32 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:40 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "19/May/2015:04:05:25 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:36 +0000", "remote_ip": "193.158.63.18", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.5)"} +{"time": "19/May/2015:04:05:47 +0000", "remote_ip": "98.158.206.109", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.19"} +{"time": "19/May/2015:04:05:14 +0000", "remote_ip": "148.251.131.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 352, "referrer": "-", "agent": "Java/1.7.0_09"} +{"time": "19/May/2015:04:05:41 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:04:05:23 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:04:05:15 +0000", "remote_ip": "54.247.52.143", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3060803, "referrer": "-", "agent": "Wget/1.14 (linux-gnu)"} +{"time": "19/May/2015:04:05:38 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:04:05:18 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "19/May/2015:04:05:36 +0000", "remote_ip": "12.196.121.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "None"} +{"time": "19/May/2015:04:05:35 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:03 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:31 +0000", "remote_ip": "69.43.196.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:04:05:48 +0000", "remote_ip": "69.43.196.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 9307, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:04:05:29 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:20 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:19 +0000", "remote_ip": "54.78.145.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3060803, "referrer": "-", "agent": "Wget/1.14 (linux-gnu)"} +{"time": "19/May/2015:04:05:47 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:59 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:23 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_3 HTTP/1.1", "response": 200, "bytes": 1073033, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:04:05:11 +0000", "remote_ip": "62.52.26.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:04:05:44 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:05 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:30 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:35 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:49 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:43 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:49 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:17 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:38 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:14 +0000", "remote_ip": "128.142.141.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:04:05:28 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:30 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:55 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:34 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:01 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:38 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:00 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:38 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:40 +0000", "remote_ip": "54.198.58.35", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:04:05:36 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:47 +0000", "remote_ip": "128.142.141.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:04:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:27 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:04:05:15 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:07 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:44 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:54 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:49 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:26 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:17 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:51 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:19 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:52 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:04:05:18 +0000", "remote_ip": "130.211.154.1", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:04:05:48 +0000", "remote_ip": "2001:4802:7801:102:8bee:6e66:ff20:1b37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:04:05:14 +0000", "remote_ip": "63.251.84.1", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:04:05:41 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:04:05:40 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:04:05:10 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:04:05:33 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:04:05:24 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:03 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:59 +0000", "remote_ip": "130.211.154.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:05:05:49 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:07 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:08 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:52 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:04 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:32 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:18 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:47 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:38 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:05:05:57 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:50 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:14 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:27 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:42 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:25 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:32 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:07 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:32 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:39 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:14 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:29 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:50 +0000", "remote_ip": "54.79.61.8", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:05:05:02 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:53 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:27 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:54 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:24 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:30 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:56 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:45 +0000", "remote_ip": "162.252.175.159", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:05 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:05:05:22 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:34 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:04 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:25 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:56 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:26 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:00 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:39 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:53 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:15 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:32 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:05:05:26 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:23 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:16 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:26 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:58 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:15 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:23 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:41 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:43 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:40 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:02 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:57 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:22 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:44 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:19 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:26 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:19 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:18 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:40 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:31 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:33 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:14 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:41 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:08 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:52 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:36 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:50 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:58 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:02 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:03 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:36 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:18 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:45 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:27 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:59 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:05 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:55 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:47 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:41 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:19 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:09 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:47 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:20 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:05:05:02 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:57 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:06 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:57 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:04 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:12 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:53 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:40 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:44 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:23 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:11 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:05:05:41 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:50 +0000", "remote_ip": "10.0.0.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:05:05:35 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:34 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:05:05:29 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:00 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:05:05:17 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:56 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:05:05:52 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:46 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:20 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:05:05:08 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 325, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:05:05:48 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:05:05:42 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:05:05:15 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:05:05:29 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:20 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:06 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:50 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:53 +0000", "remote_ip": "204.77.168.241", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "19/May/2015:06:05:40 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:41 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:29 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:46 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:04 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:59 +0000", "remote_ip": "84.208.15.12", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:33 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:59 +0000", "remote_ip": "213.242.67.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.2 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:06:05:01 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:54 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:21 +0000", "remote_ip": "91.121.171.70", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:06:05:48 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:39 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:57 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:44 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:35 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:47 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:23 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:24 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:04 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:49 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:19 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:37 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:10 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:15 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:39 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:58 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:37 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:25 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:56 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:42 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:35 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:46 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:05 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:00 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:44 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:56 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:33 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:55 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:09 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:01 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:31 +0000", "remote_ip": "208.68.163.134", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 19244140, "referrer": "-", "agent": "Chef Client/10.18.2 (ruby-1.8.7-p249; ohai-6.16.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:06:05:15 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:10 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:06:05:50 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:01 +0000", "remote_ip": "194.68.178.149", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:35 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:09 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:37 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:51 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:35 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:58 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:47 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:56 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:01 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:55 +0000", "remote_ip": "84.100.81.96", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10.1 yum/3.4.3"} +{"time": "19/May/2015:06:05:21 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:00 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:13 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:51 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:03 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:33 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:47 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:27 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:55 +0000", "remote_ip": "54.68.154.224", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26930866, "referrer": "-", "agent": "Chef Client/12.0.1 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:06:05:02 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:13 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:08 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:05 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:03 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:16 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:50 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:59 +0000", "remote_ip": "23.20.57.231", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:31 +0000", "remote_ip": "213.242.67.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:06:05:43 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:56 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:50 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:59 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:19 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:39 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:50 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:51 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:00 +0000", "remote_ip": "185.40.8.59", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:06:05:20 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:59 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:22 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:45 +0000", "remote_ip": "84.100.81.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.10.1 yum/3.4.3"} +{"time": "19/May/2015:06:05:09 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:49 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:53 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:29 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:27 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:46 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:59 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:55 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:32 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:09 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:03 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:01 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:06:05:07 +0000", "remote_ip": "54.220.74.29", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.15.3 zlib/1.2.3 libidn/1.18 libssh2/1.4.2"} +{"time": "19/May/2015:06:05:45 +0000", "remote_ip": "50.19.80.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:06:05:20 +0000", "remote_ip": "54.172.14.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:06:05:06 +0000", "remote_ip": "54.87.227.218", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 8526339, "referrer": "-", "agent": "Chef Client/11.10.2 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:06:05:39 +0000", "remote_ip": "50.22.233.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:06:05:42 +0000", "remote_ip": "50.22.233.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:06:05:30 +0000", "remote_ip": "50.22.233.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:06:05:10 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:22 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:23 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:13 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:09 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:00 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:38 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:43 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:55 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:06:05:45 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:00 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:55 +0000", "remote_ip": "85.214.230.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:07:05:11 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:33 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:25 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:04 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:05 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:02 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:53 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:42 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:28 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:59 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:13 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:53 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:25 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:57 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:55 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:36 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:28 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:41 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:23 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:55 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:40 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:05 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:19 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:57 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:04 +0000", "remote_ip": "74.63.198.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:37 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:21 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:24 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:16 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:54 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:27 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:24 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:57 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:01 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:31 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:39 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:38 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:07 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 321, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:10 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.20.1)"} +{"time": "19/May/2015:07:05:26 +0000", "remote_ip": "2001:4800:7817:104:be76:4eff:fe05:aa3b", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:07:05:35 +0000", "remote_ip": "109.107.38.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:43 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 317, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:37 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:17 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:44 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:22 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:52 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:28 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:37 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:50 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:07 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:19 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:44 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:37 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:45 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:11 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:39 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:49 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:48 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:29 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:53 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:05 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:04 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:42 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 344, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:13 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:05 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:24 +0000", "remote_ip": "157.166.243.1", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26917470, "referrer": "-", "agent": "Chef Client/11.8.2 (ruby-1.9.3-p484; ohai-6.22.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:07:05:17 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 344, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:10 +0000", "remote_ip": "213.239.192.202", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:07:05:42 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:20 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 347, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:21 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:08 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 343, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:46 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:45 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:52 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 344, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:32 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:29 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:37 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:29 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 342, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:36 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:50 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:30 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:07:05:04 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:31 +0000", "remote_ip": "54.173.51.151", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3"} +{"time": "19/May/2015:07:05:18 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:07:05:45 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:07:05:25 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:34 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:46 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:07 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:07:05:27 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:51 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:52 +0000", "remote_ip": "2001:4801:7824:102:8bee:6e66:ff11:2b04", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:07:05:41 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:36 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:00 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:01 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 343, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:26 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:00 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:48 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:51 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:53 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:37 +0000", "remote_ip": "54.252.209.144", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.5)"} +{"time": "19/May/2015:07:05:57 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:14 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:30 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:17 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:15 +0000", "remote_ip": "176.58.88.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:07:05:42 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:35 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:54 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:49 +0000", "remote_ip": "178.62.69.228", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:07:05:11 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:07:05:37 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:24 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:13 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:52 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:29 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:32 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:12 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:23 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:10 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:08 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:35 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:31 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:50 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:34 +0000", "remote_ip": "54.235.239.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:02 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:54 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:22 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:45 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:27 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:10 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:55 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:05 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:13 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:33 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:17 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:27 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:17 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:38 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:49 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:43 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:18 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:59 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:33 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:52 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:39 +0000", "remote_ip": "54.72.79.148", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:08:05:35 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:16 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:59 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:50 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:12 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:49 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:13 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:54 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:18 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:00 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:28 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:31 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:52 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:15 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:35 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:53 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:05 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:16 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:58 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:51 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:13 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:18 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:04 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:27 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:13 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:01 +0000", "remote_ip": "54.165.111.6", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:08:05:50 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:51 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:03 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:41 +0000", "remote_ip": "143.210.16.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:29 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:56 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:33 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:05 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:28 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:24 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:29 +0000", "remote_ip": "193.234.241.140", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:08:05:54 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:52 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:10 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:31 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:30 +0000", "remote_ip": "2001:4801:7824:102:8bee:6e66:ff10:fe2a", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:08:05:11 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:40 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:26 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:09 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:48 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:13 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:09 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:56 +0000", "remote_ip": "54.205.67.238", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:08:05:18 +0000", "remote_ip": "89.191.67.128", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:40 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:35 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:06 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:16 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:13 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:57 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:43 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:41 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:52 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:30 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:19 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:41 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:07 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:08 +0000", "remote_ip": "54.172.66.185", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:08:05:31 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:42 +0000", "remote_ip": "23.97.232.169", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:08:05:39 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:26 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:54 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:10 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:14 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:33 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:36 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:09 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:29 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:56 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:30 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:08:05:45 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:36 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:19 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:32 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:09:05:53 +0000", "remote_ip": "54.229.3.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.0 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:09:05:24 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:20 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:02 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:19 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:47 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:52 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:35 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:10 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:23 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:07 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:15 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:29 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:51 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:17 +0000", "remote_ip": "50.19.73.73", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:09:05:07 +0000", "remote_ip": "208.113.156.25", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:09:05:10 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:03 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:02 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:44 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:56 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:34 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:56 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:55 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:06 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:17 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:26 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:34 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:51 +0000", "remote_ip": "217.64.170.250", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:13 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:54 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:55 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:42 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:09:05:15 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:27 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:05 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:23 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:52 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:10 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:27 +0000", "remote_ip": "54.229.3.235", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26916552, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:09:05:29 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:28 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:29 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:32 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:28 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:24 +0000", "remote_ip": "144.76.82.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:55 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:56 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:24 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:22 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:59 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:48 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:46 +0000", "remote_ip": "198.105.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:09:05:01 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:56 +0000", "remote_ip": "193.104.37.24", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian Apt-Cacher-NG/0.5.1"} +{"time": "19/May/2015:09:05:14 +0000", "remote_ip": "198.105.198.5", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 17632, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:09:05:29 +0000", "remote_ip": "81.169.220.253", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:09:05:41 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:08 +0000", "remote_ip": "62.182.63.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:09:05:45 +0000", "remote_ip": "62.182.63.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:09:05:24 +0000", "remote_ip": "62.182.63.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:09:05:21 +0000", "remote_ip": "62.182.63.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:09:05:18 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:11 +0000", "remote_ip": "62.182.63.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:09:05:50 +0000", "remote_ip": "62.182.63.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:09:05:05 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:46 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:28 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:27 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:37 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:28 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:59 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:35 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:02 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:45 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:29 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:15 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:39 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:57 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:55 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:18 +0000", "remote_ip": "104.130.16.155", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:09:05:08 +0000", "remote_ip": "218.185.233.6", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.0 (ruby-1.9.3-p429; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:09:05:42 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:58 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:55 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:14 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:55 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:21 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:58 +0000", "remote_ip": "129.67.24.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:05 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:01 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:40 +0000", "remote_ip": "95.182.209.5", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:09:05:31 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:54 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:32 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:13 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:17 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:41 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:18 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:00 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:04 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:57 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:16 +0000", "remote_ip": "192.168.128.203", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:09:05:21 +0000", "remote_ip": "162.242.222.188", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:09:05:47 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:50 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:53 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:13 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:06 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:55 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:00 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:46 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:09:05:42 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:28 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:41 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:04 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:31 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:03 +0000", "remote_ip": "23.23.1.176", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:10:05:46 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:17 +0000", "remote_ip": "80.82.207.86", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:16 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:31 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:36 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:46 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:05 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:18 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:10:05:25 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:23 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:19 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:27 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:49 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:16 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:02 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:31 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:29 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:07 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:31 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:38 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:30 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:41 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:00 +0000", "remote_ip": "54.85.111.240", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:10:05:13 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:45 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:21 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:39 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:59 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:28 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:52 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:36 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:30 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:48 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:36 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:18 +0000", "remote_ip": "54.209.92.192", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:51 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:29 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:01 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:49 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:53 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:45 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:24 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:41 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:00 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:23 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:10 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:42 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:05 +0000", "remote_ip": "54.201.110.198", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26946152, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:10:05:23 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:56 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:27 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:13 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:41 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:48 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:30 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:46 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:25 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:01 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:22 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:57 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:07 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:00 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:01 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:52 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:58 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:31 +0000", "remote_ip": "23.22.94.212", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:10:05:40 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:39 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:35 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:51 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:12 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:36 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:14 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:50 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:44 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:15 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:45 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:19 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:20 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:03 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:52 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:41 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:47 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:28 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:44 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:35 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:57 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:59 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:39 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:52 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:07 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:55 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:02 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:35 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:27 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:48 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:19 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:37 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:25 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:10:05:24 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:26 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:13 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:00 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:03 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:25 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:51 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:10:05:29 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:10:05:40 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:10:05:58 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:12 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:10:05:24 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:10:05:57 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:10:05:46 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:10:05:06 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:10:05:20 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:10:05:54 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:10:05:43 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:01 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:38 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:19 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:53 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:27 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:50 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:40 +0000", "remote_ip": "54.208.16.21", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 30917670, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:11:05:33 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:57 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:13 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:27 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:11:05:13 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:16 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:24 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:11:05:18 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:34 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:36 +0000", "remote_ip": "173.203.139.108", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:16 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:34 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 3301, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:25 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:46 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:17 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:05 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:14 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:01 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3316, "referrer": "-", "agent": "-"} +{"time": "19/May/2015:11:05:39 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:11:05:02 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:13 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:52 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:11:05:01 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:27 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:33 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:10 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 206, "bytes": 1, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:54 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:11:05:59 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:39 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:11:05:30 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:51 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:39 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:36 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:54 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:15 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:14 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:21 +0000", "remote_ip": "54.196.151.120", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:11:05:17 +0000", "remote_ip": "80.91.33.133", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:11:05:33 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:15 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:19 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:57 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:18 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:46 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 347, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:53 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:22 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:11:05:55 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:11:05:28 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:49 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:33 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:45 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:05 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:03 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:37 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:50 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:17 +0000", "remote_ip": "94.236.106.132", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:02 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:44 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:40 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:46 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:02 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:25 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:44 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:07 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:11:05:09 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:54 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:01 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:11:05:12 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:35 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:33 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:11 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:01 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:56 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:19 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:38 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:26 +0000", "remote_ip": "128.142.135.16", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:11:05:36 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:27 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:22 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:25 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:00 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:34 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:10 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:11:05:09 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:27 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:18 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:58 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:13 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:04 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:46 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:22 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:56 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:59 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:24 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:37 +0000", "remote_ip": "217.168.17.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:19 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:11:05:41 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:36 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:40 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:18 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:36 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:14 +0000", "remote_ip": "172.20.20.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:36 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:30 +0000", "remote_ip": "5.9.138.125", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:11:05:21 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:11:05:03 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:37 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:48 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:11:05:15 +0000", "remote_ip": "54.174.232.167", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3"} +{"time": "19/May/2015:11:05:36 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:18 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:11:05:57 +0000", "remote_ip": "75.101.209.57", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:12:05:26 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:32 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:33 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:34 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:08 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:12:05:37 +0000", "remote_ip": "188.75.73.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:12:05:56 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:10 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:32 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:33 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:58 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:15 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:33 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:04 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:15 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:21 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:36 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:59 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:41 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:12:05:30 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:50 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:27 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:10 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:54 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:48 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:52 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:49 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:26 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:15 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:24 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:41 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:28 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:06 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:11 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:32 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:46 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:31 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:23 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:48 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:44 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:41 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:58 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:31 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:57 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:54 +0000", "remote_ip": "87.233.13.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:09 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:57 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:45 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:33 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:24 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:58 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:09 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:06 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:10 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:49 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:09 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:15 +0000", "remote_ip": "54.173.226.7", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:27 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:12:05:10 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:39 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:22 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:23 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:56 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:22 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:42 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:53 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:04 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:55 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:15 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:27 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:51 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:48 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:09 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:32 +0000", "remote_ip": "75.126.196.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:12:05:15 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:54 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:47 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:10 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:27 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:53 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:58 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:56 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:52 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:12:05:06 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:12:05:09 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:55 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:12:05:32 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:50 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:14 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:41 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:15 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:34 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:28 +0000", "remote_ip": "185.32.100.20", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:36 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:23 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:50 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:51 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:54 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:55 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:27 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:14 +0000", "remote_ip": "54.194.95.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:58 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:51 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:35 +0000", "remote_ip": "54.173.228.189", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:12 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:57 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:42 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:09 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:59 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:12:05:29 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:02 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:48 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:12:05:31 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:17 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:02 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:52 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:12:05:30 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:12:05:13 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:08 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:16 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:50 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:07 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:58 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:24 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:29 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:38 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:06 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:54 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:35 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:41 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:49 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:23 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:25 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:45 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:31 +0000", "remote_ip": "188.93.208.132", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:29 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:52 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:13 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:23 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:10 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:56 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:48 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:00 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:01 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:53 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:13 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:17 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:28 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:45 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:58 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:05 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:02 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:25 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:33 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:46 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:42 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:48 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:12 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:23 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:55 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:19 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:21 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:53 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:11 +0000", "remote_ip": "173.255.243.139", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:05 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:44 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:27 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:24 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:02 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:31 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:25 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:38 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:42 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:02 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:24 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:12 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:56 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:33 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:44 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:41 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:56 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:43 +0000", "remote_ip": "104.130.9.106", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:13:05:44 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:31 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:13:05:17 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:28 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:08 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:52 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:34 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:03 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:33 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:00 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:54 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:25 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:23 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:36 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:29 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:20 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:53 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:39 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:32 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:29 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:01 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:14 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:24 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:44 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:37 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:38 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "19/May/2015:13:05:24 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:49 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:24 +0000", "remote_ip": "2001:4800:7815:103:8bee:6e66:ff05:44c9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:13:05:49 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:15 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:04 +0000", "remote_ip": "5.9.251.233", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:13:05:17 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:54 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:52 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:28 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:32 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:13:05:54 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:13:05:26 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:59 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:28 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:13 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:50 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:30 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:13:05:59 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:52 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:46 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:13:05:57 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:31 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:14 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:05 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:13:05:53 +0000", "remote_ip": "72.32.152.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:13:05:31 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:18 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:29 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:40 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:48 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:43 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 315, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:14:05:49 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:53 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:10 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:19 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:14:05:23 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:00 +0000", "remote_ip": "54.227.118.240", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 19849249, "referrer": "-", "agent": "Chef Client/11.4.4 (ruby-1.9.3-p286; ohai-6.16.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:14:05:41 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:33 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:25 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:06 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:14:05:54 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:03 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:44 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:00 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:47 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:22 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:51 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:04 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:34 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:39 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:16 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:17 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:11 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:17 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:49 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:17 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:20 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:15 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:58 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:08 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:49 +0000", "remote_ip": "144.76.37.115", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:14:05:29 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:23 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:09 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:24 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:17 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:46 +0000", "remote_ip": "50.57.209.100", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:14:05:16 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:34 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:43 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:10 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:23 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:04 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:40 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:14:05:48 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:58 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:24 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:12 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:16 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:47 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:33 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:35 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:32 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:18 +0000", "remote_ip": "64.202.160.161", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:14:05:27 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:09 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:52 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:45 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:51 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:12 +0000", "remote_ip": "208.47.132.224", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:14:05:24 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:44 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:57 +0000", "remote_ip": "78.47.142.9", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:14:05:15 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:43 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:59 +0000", "remote_ip": "119.15.96.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:21 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:14:05:13 +0000", "remote_ip": "216.245.129.124", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:14:05:34 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:02 +0000", "remote_ip": "216.245.129.124", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:14:05:48 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:54 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:57 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:22 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:14 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:07 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:14:05:56 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:35 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:10 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:23 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:25 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:11 +0000", "remote_ip": "203.4.200.68", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:08 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:43 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:56 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:53 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:49 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:34 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:15 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:52 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:34 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:14:05:15 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:51 +0000", "remote_ip": "119.252.76.162", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:00 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:18 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:14:05:41 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:46 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:14 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:09 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:14:05:59 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:22 +0000", "remote_ip": "198.199.106.214", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:14:05:01 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:14:05:37 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:14:05:13 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:26 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:33 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:59 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:22 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:10 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:59 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:07 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:02 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:35 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:14:05:23 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:44 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:13 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:15 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:22 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:30 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:43 +0000", "remote_ip": "54.172.110.13", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:14:05:53 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:24 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:15:05:30 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:19 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:37 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:53 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:45 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:32 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:46 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:06 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:07 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:45 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:15 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:21 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:27 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:28 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:58 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:10 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:26 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:15:05:17 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:46 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:54 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:32 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:59 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:34 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:44 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:40 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:15 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:35 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:51 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:46 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:57 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:26 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:30 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:16 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:15:05:55 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:13 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:00 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:58 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:23 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:41 +0000", "remote_ip": "190.196.122.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:15:05:42 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:41 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:01 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:54 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:36 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:08 +0000", "remote_ip": "186.67.186.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:20 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:43 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:00 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:56 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:13 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:45 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:59 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:52 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:05 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:55 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:51 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:15:05:20 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:07 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:50 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:30 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:29 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:51 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:19 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:48 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:51 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:28 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:50 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:48 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:18 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:55 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:59 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:51 +0000", "remote_ip": "98.122.98.225", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:15:05:40 +0000", "remote_ip": "78.47.142.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:15:05:56 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:28 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:39 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:03 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:52 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:21 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:37 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:02 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:34 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:50 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:15:05:07 +0000", "remote_ip": "85.10.223.69", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:36 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:34 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:28 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:10 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:47 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:10 +0000", "remote_ip": "37.187.136.53", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:15:05:29 +0000", "remote_ip": "85.10.223.71", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:15:05:45 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:34 +0000", "remote_ip": "176.9.212.166", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:50 +0000", "remote_ip": "98.122.98.225", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:15:05:24 +0000", "remote_ip": "5.9.232.82", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:15:05:08 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:13 +0000", "remote_ip": "216.139.210.211", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.10.0 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:15:05:44 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:30 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:25 +0000", "remote_ip": "140.245.91.38", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2573, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:15:05:33 +0000", "remote_ip": "54.174.121.37", "remote_user": "-", "request": "GET /downloads/product_3 HTTP/1.1", "response": 200, "bytes": 1073033, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:15:05:42 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:09 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:44 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:51 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:43 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:27 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:11 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:09 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:03 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:26 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:36 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:48 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:38 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:34 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:17 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:15:05:40 +0000", "remote_ip": "200.28.3.3", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:34 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:15 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:47 +0000", "remote_ip": "54.165.189.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:40 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:50 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:03 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:13 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:03 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:50 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:37 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:42 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:30 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:21 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:39 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:42 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:50 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:01 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:52 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:35 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:54 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:47 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:46 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:45 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:34 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:36 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:30 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:51 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:47 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:53 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:03 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:32 +0000", "remote_ip": "54.90.69.215", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:42 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:48 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:22 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:44 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:19 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:54 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:01 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:00 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:46 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:07 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:04 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:47 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:37 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:27 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:16 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:15 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:41 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:35 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:22 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:40 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:19 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:12 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:33 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:07 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:49 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:10 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:57 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:35 +0000", "remote_ip": "54.174.240.79", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3"} +{"time": "19/May/2015:16:05:07 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:58 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:08 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:39 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:53 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "19/May/2015:16:05:19 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:39 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:31 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:27 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:11 +0000", "remote_ip": "85.10.223.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:45 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:47 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:38 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:09 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:50 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:14 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:03 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:32 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:07 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:24 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:43 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:03 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:48 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:43 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:21 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:25 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:43 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:00 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:16:05:03 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:14 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:19 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:10 +0000", "remote_ip": "5.9.251.229", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:21 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:54 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:19 +0000", "remote_ip": "200.28.3.2", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:16:05:43 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:22 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:50 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:15 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:20 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:31 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:14 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:39 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:57 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:21 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:42 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:36 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:37 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:40 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:57 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:39 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:55 +0000", "remote_ip": "192.73.252.179", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:16:05:18 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:52 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:25 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:58 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:16:05:35 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:15 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:53 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:06 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:43 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:10 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:08 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:49 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:20 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:10 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:53 +0000", "remote_ip": "209.237.233.37", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:17:05:01 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:12 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:10 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:06 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:35 +0000", "remote_ip": "209.237.233.37", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:17:05:04 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:23 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:01 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:47 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:26 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:38 +0000", "remote_ip": "97.107.128.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:07 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:13 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:42 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:54 +0000", "remote_ip": "54.183.198.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:33 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:43 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:00 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:32 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:42 +0000", "remote_ip": "192.169.212.68", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:17:05:22 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:35 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:45 +0000", "remote_ip": "89.191.67.117", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:31 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:30 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:47 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:00 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:08 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:35 +0000", "remote_ip": "74.205.117.244", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:17:05:25 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:27 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:12 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:31 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:32 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:59 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:17 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:36 +0000", "remote_ip": "37.187.252.103", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:33 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:27 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:57 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:42 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:11 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:58 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:07 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:33 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:50 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:17 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:40 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:10 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:06 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:11 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:17:05:50 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:57 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:02 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:49 +0000", "remote_ip": "185.40.8.139", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:56 +0000", "remote_ip": "54.237.240.207", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:17:05:08 +0000", "remote_ip": "97.107.128.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:47 +0000", "remote_ip": "97.107.128.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 3316, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:21 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:22 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:12 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:29 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:56 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:17 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:25 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:27 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:06 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:15 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:10 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:21 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:06 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:07 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:52 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:19 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:00 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:46 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:36 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:20 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:13 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:12 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:14 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:52 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:23 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:33 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:55 +0000", "remote_ip": "54.79.5.99", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:17:05:08 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:31 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:23 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:22 +0000", "remote_ip": "192.166.193.27", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:17:05:45 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:33 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:20 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:35 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:21 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:56 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:35 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:17 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:48 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:49 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:55 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:44 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:51 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:15 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:17:05:40 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:17:05:07 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:44 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:25 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:17:05:56 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:28 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:17:05:58 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:21 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:17:05:33 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:17:05:48 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:17:05:15 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:10 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:49 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:13 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:49 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:25 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:05 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:55 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:59 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:29 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:18:05:34 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:24 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:10 +0000", "remote_ip": "54.84.215.222", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:18:05:30 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:23 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:18 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:02 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:49 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:34 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:06 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:56 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:41 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:27 +0000", "remote_ip": "41.73.157.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2267, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:18:05:55 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:53 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:11 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:47 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:54 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:58 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:11 +0000", "remote_ip": "82.226.58.172", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:18:05:44 +0000", "remote_ip": "76.74.249.242", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:18:05:34 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.13.4 (linux-gnu)"} +{"time": "19/May/2015:18:05:16 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:35 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:34 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:23 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:21 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:29 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "19/May/2015:18:05:04 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:30 +0000", "remote_ip": "54.208.71.238", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 30917670, "referrer": "-", "agent": "Chef Client/11.16.4 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:18:05:55 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:24 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:36 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:42 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:36 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:12 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:39 +0000", "remote_ip": "42.2.197.223", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.9.2ubuntu2)"} +{"time": "19/May/2015:18:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:15 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:10 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:15 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:07 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:59 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:51 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:01 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:32 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:14 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:19 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:55 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:51 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:06 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:11 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:34 +0000", "remote_ip": "122.135.46.210", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:18:05:12 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:51 +0000", "remote_ip": "195.71.92.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:18:05:28 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:59 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:10 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:50 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:46 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:10 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:07 +0000", "remote_ip": "5.39.64.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:47 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:31 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:38 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:02 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:54 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:47 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:28 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:09 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:48 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:34 +0000", "remote_ip": "94.42.167.36", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:37 +0000", "remote_ip": "54.149.109.4", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "19/May/2015:18:05:46 +0000", "remote_ip": "208.65.107.104", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:18:05:29 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:18:05:05 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:18 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:27 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:40 +0000", "remote_ip": "97.107.128.171", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1673, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:32 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:19 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:01 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:13 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:06 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:50 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:03 +0000", "remote_ip": "92.60.9.66", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:18:05:18 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:49 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:37 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:34 +0000", "remote_ip": "46.105.108.70", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:18:05:51 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:18:05:02 +0000", "remote_ip": "92.60.9.66", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:18:05:19 +0000", "remote_ip": "54.79.61.8", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:18:05:33 +0000", "remote_ip": "137.208.8.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:19:05:03 +0000", "remote_ip": "137.208.8.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:19:05:27 +0000", "remote_ip": "137.208.8.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:19:05:08 +0000", "remote_ip": "137.208.8.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:19:05:52 +0000", "remote_ip": "137.208.8.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:19:05:03 +0000", "remote_ip": "137.208.8.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:19:05:44 +0000", "remote_ip": "137.208.8.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:19:05:22 +0000", "remote_ip": "137.208.8.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:19:05:17 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:36 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:07 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:14 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:40 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:33 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:17 +0000", "remote_ip": "54.191.82.244", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:19:05:47 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:37 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:19:05:20 +0000", "remote_ip": "107.6.141.130", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.2 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:19:05:35 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:39 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:08 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:43 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:04 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:12 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:40 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:39 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:04 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:43 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:39 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 342, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:43 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:39 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:41 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:57 +0000", "remote_ip": "76.11.16.184", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:46 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:54 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:29 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:48 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:51 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:49 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:42 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:31 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:18 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:46 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:13 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:12 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:22 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:06 +0000", "remote_ip": "54.225.255.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Ubuntu APT-HTTP/1.3 (0.7.25.3ubuntu9.14)"} +{"time": "19/May/2015:19:05:43 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:44 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:32 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:45 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:31 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:18 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:58 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:33 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:12 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:42 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:08 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:35 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:07 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:51 +0000", "remote_ip": "130.117.40.34", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:19:05:57 +0000", "remote_ip": "5.9.232.84", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:19:05:48 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:18 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:52 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:48 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:20 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:36 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:16 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:20 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:48 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:18 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:09 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:03 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:06 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:12 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:32 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:49 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:37 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:34 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:02 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:38 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:24 +0000", "remote_ip": "195.66.81.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:19:05:08 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:26 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:19:05:31 +0000", "remote_ip": "195.66.81.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "Wget/1.11.4 Red Hat modified"} +{"time": "19/May/2015:19:05:56 +0000", "remote_ip": "54.85.201.237", "remote_user": "-", "request": "GET /downloads/product_3 HTTP/1.1", "response": 200, "bytes": 1073033, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:19:05:32 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:06 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:16 +0000", "remote_ip": "195.66.81.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.1.0 yum/3.2.22"} +{"time": "19/May/2015:19:05:10 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:46 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:44 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:23 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:47 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:26 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:48 +0000", "remote_ip": "195.66.81.4", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "Wget/1.11.4 Red Hat modified"} +{"time": "19/May/2015:19:05:26 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:03 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:40 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:20 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:28 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:26 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:43 +0000", "remote_ip": "162.248.221.54", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:19:05:00 +0000", "remote_ip": "208.65.107.104", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:19:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:26 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:58 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:15 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:48 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:04 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:02 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:19:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:03 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:58 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:17 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:06 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:14 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:41 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:44 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:49 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:25 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:30 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:28 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:25 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:52 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:10 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:01 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:28 +0000", "remote_ip": "54.165.245.160", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.16.0 (ruby-1.9.3-p547; ohai-7.4.0; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:20:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:39 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:50 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:21 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:59 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:37 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:33 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:00 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:37 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:48 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:19 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:08 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:18 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:49 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:17 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:20:05:43 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:01 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:17 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:28 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:34 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:01 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:50 +0000", "remote_ip": "54.165.147.135", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3"} +{"time": "19/May/2015:20:05:13 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:54 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:23 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:22 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:56 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:42 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:32 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:09 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:55 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:33 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:02 +0000", "remote_ip": "192.73.240.212", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:13 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:14 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:34 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:28 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:13 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:23 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:17 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:52 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:16 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:34 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:41 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:36 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:35 +0000", "remote_ip": "93.94.224.131", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:20:05:53 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:02 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:21 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:06 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:53 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:40 +0000", "remote_ip": "192.73.240.72", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:20:05:36 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:59 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:24 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:37 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:00 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:27 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:08 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:39 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:31 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:34 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:02 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:55 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:13 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:22 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:53 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:29 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:32 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:39 +0000", "remote_ip": "54.77.181.41", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:20:05:15 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:20 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:12 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:17 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:07 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:04 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:08 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:24 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:57 +0000", "remote_ip": "46.4.116.138", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:21 +0000", "remote_ip": "104.207.139.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:20:05:16 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:35 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:22 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:56 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:13 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:22 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:11 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:50 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:42 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:10 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:35 +0000", "remote_ip": "50.57.237.172", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:20:05:57 +0000", "remote_ip": "50.57.237.172", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1769, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:20:05:14 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:12 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:28 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:48 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:04 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:32 +0000", "remote_ip": "178.62.213.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:20:05:52 +0000", "remote_ip": "5.9.106.130", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:21:05:14 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:57 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:54 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:04 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:42 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:21 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:13 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:56 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:35 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:32 +0000", "remote_ip": "142.103.203.1", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:21:05:18 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:58 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:34 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:21 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:03 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:36 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:15 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:29 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:12 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:11 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:26 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:15 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:09 +0000", "remote_ip": "54.226.216.209", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:54 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:02 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:00 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "19/May/2015:21:05:34 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:04 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:36 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:03 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:33 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:49 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:13 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:25 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:42 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:47 +0000", "remote_ip": "192.73.244.171", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "19/May/2015:21:05:34 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:09 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:35 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:17 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:02 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:33 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:21:05:52 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:06 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:26 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:21:05:21 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:21:05:40 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:22 +0000", "remote_ip": "212.250.119.130", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:21:05:15 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:21:05:38 +0000", "remote_ip": "212.250.119.130", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:21:05:23 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:38 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:15 +0000", "remote_ip": "95.211.12.65", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.10.3)"} +{"time": "19/May/2015:21:05:05 +0000", "remote_ip": "212.250.119.130", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:21:05:52 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:58 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:38 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:49 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:37 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:51 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:55 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:00 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:56 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:00 +0000", "remote_ip": "5.9.232.83", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:56 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:04 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:05 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:54 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:04 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:08 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:49 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:53 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:15 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:32 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:14 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:36 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:14 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:38 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:56 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:00 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:18 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:06 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "19/May/2015:21:05:48 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:47 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:48 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:16 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:47 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:21:05:13 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:05 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:16 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:12 +0000", "remote_ip": "74.63.142.188", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.14)"} +{"time": "19/May/2015:21:05:24 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:01 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:44 +0000", "remote_ip": "63.251.84.1", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "19/May/2015:21:05:34 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:21:05:47 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:41 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:58 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:51 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:15 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:28 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:29 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:21:05:07 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:39 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:06 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:33 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:43 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:38 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:04 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:42 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:18 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:21:05:42 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:21:05:14 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:21:05:08 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:22:05:01 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:33 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:06 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:34 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:29 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:56 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:54 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:00 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:33 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:47 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:54 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:37 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:25 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:29 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:44 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:05 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:32 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:22:05:52 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:50 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:22 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:42 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:52 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:56 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:35 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:19 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:44 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:05 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:06 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:37 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:11 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:39 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:09 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:55 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:09 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:22:05:15 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:51 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:29 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:22 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:45 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:37 +0000", "remote_ip": "54.208.31.242", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:22:05:32 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:29 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:18 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:15 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:48 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:08 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:11 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:22:05:03 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:59 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:55 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:04 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:16 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:28 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:06 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:55 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:34 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 342, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:11 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:12 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:43 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:39 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:59 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:09 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:16 +0000", "remote_ip": "5.9.156.178", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:53 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:22:05:28 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:41 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:33 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:47 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:21 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:40 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:33 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:09 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:19 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:20 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:37 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:33 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:46 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:24 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:51 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:06 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:04 +0000", "remote_ip": "142.1.96.87", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:44 +0000", "remote_ip": "129.67.27.205", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.11)"} +{"time": "19/May/2015:22:05:49 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:57 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:35 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:05 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:17 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:28 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:24 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:43 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:45 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:19 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:18 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:23 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:15 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:37 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:14 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:32 +0000", "remote_ip": "54.221.63.136", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:22:05:10 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:21 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:36 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:35 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:25 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:50 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:49 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:07 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:36 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:28 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:25 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:18 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:00 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:20 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:26 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:54 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:29 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:17 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:53 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:57 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:05 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:22:05:17 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:25 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:22:05:51 +0000", "remote_ip": "54.183.86.55", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:23:05:30 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:03 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:24 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:57 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 342, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:37 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:01 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:40 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:23 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:21 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:46 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:51 +0000", "remote_ip": "37.187.76.112", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:42 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:08 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:37 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:28 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:42 +0000", "remote_ip": "180.179.174.219", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:35 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:49 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:02 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:20 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:07 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:57 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:13 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:23:05:32 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:14 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:42 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:03 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:38 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:34 +0000", "remote_ip": "37.187.133.178", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:32 +0000", "remote_ip": "5.196.64.180", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:54 +0000", "remote_ip": "37.187.157.78", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:37 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:53 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:39 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:34 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:08 +0000", "remote_ip": "54.77.28.241", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "19/May/2015:23:05:02 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:30 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:38 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:28 +0000", "remote_ip": "176.31.229.173", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "192.99.38.217", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:44 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:43 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:27 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:07 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:59 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:03 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:49 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:12 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:44 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:23 +0000", "remote_ip": "37.187.157.74", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:19 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:38 +0000", "remote_ip": "54.237.232.150", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:23:05:32 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:29 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:06 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:32 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:00 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:42 +0000", "remote_ip": "54.67.85.207", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:23:05:12 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:51 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:58 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:10 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:50 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:08 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:54 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:32 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:05 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:56 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:40 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:09 +0000", "remote_ip": "37.187.155.194", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:59 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:06 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:57 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:06 +0000", "remote_ip": "10.4.5.100", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:04 +0000", "remote_ip": "176.31.232.152", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:01 +0000", "remote_ip": "10.4.5.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:31 +0000", "remote_ip": "37.187.157.71", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:30 +0000", "remote_ip": "10.4.5.101", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:58 +0000", "remote_ip": "54.175.79.121", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "19/May/2015:23:05:56 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:07 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:24 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:46 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:57 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:08 +0000", "remote_ip": "23.22.21.48", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2582, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "19/May/2015:23:05:54 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:10 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:05 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:11 +0000", "remote_ip": "50.97.82.53", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "19/May/2015:23:05:38 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:48 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:49 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:52 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:32 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:07 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:04 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:17 +0000", "remote_ip": "149.6.185.90", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:14 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "19/May/2015:23:05:27 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:19 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:01 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:19 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:34 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:19 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:43 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:37 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:17 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:53 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:23 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:00 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:59 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:17 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:23 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:01 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:06 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:55 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:16 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:34 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:57 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:44 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:07 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:42 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:52 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:08 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:25 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:39 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:21 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:32 +0000", "remote_ip": "31.31.75.239", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:00:05:39 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:52 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:02 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:13 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:26 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:48 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:14 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:33 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:49 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:18 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:01 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:28 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:24 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:09 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:58 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:45 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:06 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:38 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:44 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:27 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:35 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:24 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:48 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:05 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:51 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:18 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:33 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:16 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:23 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:13 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:56 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:57 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:44 +0000", "remote_ip": "54.86.8.9", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:15 +0000", "remote_ip": "67.132.206.254", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "20/May/2015:00:05:00 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:10 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:50 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:26 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2578, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "20/May/2015:00:05:27 +0000", "remote_ip": "54.165.16.50", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.4.3"} +{"time": "20/May/2015:00:05:25 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:19 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:59 +0000", "remote_ip": "54.79.116.118", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:00:05:22 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:32 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:13 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:04 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:11 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:03 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:40 +0000", "remote_ip": "62.76.75.110", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "20/May/2015:00:05:25 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:26 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:58 +0000", "remote_ip": "54.154.27.80", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:34 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:03 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:55 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:36 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:04 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:30 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:55 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:53 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:12 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:31 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:19 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:00:05:17 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:56 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:05 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:07 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:02 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:56 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:08 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:17 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:41 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:11 +0000", "remote_ip": "54.174.249.195", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3"} +{"time": "20/May/2015:00:05:01 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.10.4 (ruby-1.9.3-p484; ohai-6.20.0; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:00:05:25 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:15 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:09 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:42 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:54 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:10 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:39 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:01 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:10 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:30 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:41 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:01 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:00:05:03 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:00:05:50 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:00:05:47 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:00:05:52 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:00:05:51 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:47 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:53 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:17 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:57 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:45 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:06 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:37 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:51 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:21 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:13 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:31 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:57 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:14 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:37 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:29 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:31 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:32 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:15 +0000", "remote_ip": "54.90.208.208", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:28 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:27 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:11 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:43 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:39 +0000", "remote_ip": "54.183.135.30", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:45 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:48 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:30 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:08 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:38 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:09 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:38 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:00 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:57 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:29 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:57 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:04 +0000", "remote_ip": "62.76.75.110", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.10 yum/3.4.3"} +{"time": "20/May/2015:01:05:35 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:12 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:34 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:41 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:23 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:29 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:42 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:55 +0000", "remote_ip": "78.47.142.11", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:54 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:48 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:30 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:38 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:04 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:13 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:17 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:19 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:32 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:20 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:48 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:00 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:51 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:56 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:41 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:16 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:32 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:57 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:30 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:28 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:43 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:21 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:02 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:01 +0000", "remote_ip": "148.251.112.153", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.17)"} +{"time": "20/May/2015:01:05:50 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:01:05:31 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:28 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:09 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:03 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:48 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:05 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:34 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:07 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:57 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:03 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:48 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:03 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:49 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:22 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:13 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:08 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:01 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:55 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:07 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:13 +0000", "remote_ip": "46.29.152.10", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:20 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:48 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:01:05:52 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:20 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:46 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:07 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:15 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:13 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:37 +0000", "remote_ip": "107.23.7.76", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:01:05:08 +0000", "remote_ip": "114.80.245.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 26318005, "referrer": "-", "agent": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36"} +{"time": "20/May/2015:01:05:03 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 313, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:59 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:47 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:53 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:22 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:41 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:00 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:33 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:06 +0000", "remote_ip": "193.2.18.181", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 2576, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "20/May/2015:01:05:54 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:58 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:56 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:49 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:06 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:50 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:01:05:15 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:01:05:52 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:16 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:10 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:23 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:45 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:20 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:33 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:06 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:54 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:15 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:03 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:35 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:58 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:23 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:18 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:34 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:40 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:13 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:21 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:01 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:30 +0000", "remote_ip": "104.131.92.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:09 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:47 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:03 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:02 +0000", "remote_ip": "109.188.125.13", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:56 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:11 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:40 +0000", "remote_ip": "92.52.115.250", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 951, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "20/May/2015:02:05:46 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:33 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:55 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:10 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:57 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:07 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:31 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:16 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:51 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:30 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:43 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:05 +0000", "remote_ip": "192.99.18.64", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "-"} +{"time": "20/May/2015:02:05:38 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:22 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:02:05:59 +0000", "remote_ip": "216.163.176.52", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2575, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "20/May/2015:02:05:15 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:32 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:07 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:32 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:00 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:38 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:44 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:56 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:51 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:59 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:16 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:57 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:26 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:00 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:58 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:57 +0000", "remote_ip": "199.38.182.96", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:15 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:09 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:52 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:06 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:39 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:35 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:11 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:41 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:26 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:29 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:02:05:39 +0000", "remote_ip": "93.94.224.131", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.12.2 (ruby-1.9.3-p484; ohai-7.0.2; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:02:05:25 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:09 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:20 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:22 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:29 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:11 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:45 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:10 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:20 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:44 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:25 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:04 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:49 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:11 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:41 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:42 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:06 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:45 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:53 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:14 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:20 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:42 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:09 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:23 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:02 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:17 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 490, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:02 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:19 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:47 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:43 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:35 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:25 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:22 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:23 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:24 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:37 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 346, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:10 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:58 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:56 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:13 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:05 +0000", "remote_ip": "54.164.115.115", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:02:05:56 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:32 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:19 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 345, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:20 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:01 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:43 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:42 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:49 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:12 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:02:05:47 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:02:05:48 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:06 +0000", "remote_ip": "209.10.41.94", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 27730896, "referrer": "-", "agent": "Chef Client/11.12.8 (ruby-1.9.3-p484; ohai-7.0.4; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:03:05:28 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:48 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:30 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:36 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:34 +0000", "remote_ip": "54.170.232.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:03:05:30 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:08 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:12 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:44 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:38 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:39 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:34 +0000", "remote_ip": "54.170.232.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:03:05:46 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:56 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:45 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:38 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:30 +0000", "remote_ip": "209.177.156.193", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:56 +0000", "remote_ip": "54.170.232.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:03:05:46 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:49 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:29 +0000", "remote_ip": "54.170.232.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:03:05:51 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:18 +0000", "remote_ip": "209.216.233.52", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:23 +0000", "remote_ip": "54.170.232.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:03:05:44 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:23 +0000", "remote_ip": "54.170.232.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:03:05:00 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:22 +0000", "remote_ip": "54.170.232.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:03:05:53 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:58 +0000", "remote_ip": "74.205.117.244", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/12.0.3 (ruby-2.1.4-p265; ohai-8.0.1; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:03:05:40 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:48 +0000", "remote_ip": "54.170.232.102", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.9.7.9)"} +{"time": "20/May/2015:03:05:57 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:33 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:26 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:45 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:15 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:43 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:00 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:36 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:40 +0000", "remote_ip": "91.250.75.236", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.16)"} +{"time": "20/May/2015:03:05:52 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:15 +0000", "remote_ip": "88.159.11.200", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:03:05:02 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:24 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:25 +0000", "remote_ip": "144.76.81.209", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 200, "bytes": 1768, "referrer": "-", "agent": "Wget/1.15 (linux-gnu)"} +{"time": "20/May/2015:03:05:31 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:29 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:57 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:44 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:51 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:24 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:09 +0000", "remote_ip": "54.209.166.251", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 85619205, "referrer": "-", "agent": "Chef Client/11.6.2 (ruby-1.9.3-p448; ohai-6.18.0; x86_64-linux; +http://opscode.com)"} +{"time": "20/May/2015:03:05:43 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:52 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:24 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:50 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:25 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:36 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:26 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 324, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:50 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:33 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:07 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:48 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:47 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:10 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:40 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:24 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:34 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:05 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:00 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:39 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:06 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:40 +0000", "remote_ip": "54.211.222.62", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:46 +0000", "remote_ip": "216.46.173.126", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.22)"} +{"time": "20/May/2015:03:05:57 +0000", "remote_ip": "162.217.12.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 200, "bytes": 2592, "referrer": "-", "agent": "urlgrabber/3.9.1 yum/3.2.29"} +{"time": "20/May/2015:03:05:51 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 318, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:22 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:20 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:19 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:53 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:37 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:00 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:59 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:54 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:47 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 340, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:59 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:43 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:34 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:51 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 319, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:06 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 335, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:08 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 337, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:37 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 332, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:25 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:39 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:35 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:21 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:04 +0000", "remote_ip": "74.125.60.158", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:57 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 333, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:26 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 334, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:05 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 336, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:16 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:21 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 331, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:27 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 341, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:08 +0000", "remote_ip": "65.39.197.164", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 328, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.19)"} +{"time": "20/May/2015:03:05:47 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 338, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:25 +0000", "remote_ip": "54.225.249.146", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:01 +0000", "remote_ip": "54.225.249.146", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:56 +0000", "remote_ip": "54.225.249.146", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} +{"time": "20/May/2015:03:05:45 +0000", "remote_ip": "85.10.223.67", "remote_user": "-", "request": "GET /downloads/product_1 HTTP/1.1", "response": 404, "bytes": 339, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (1.0.1ubuntu2)"} +{"time": "20/May/2015:03:05:56 +0000", "remote_ip": "54.225.249.146", "remote_user": "-", "request": "GET /downloads/product_2 HTTP/1.1", "response": 304, "bytes": 0, "referrer": "-", "agent": "Debian APT-HTTP/1.3 (0.8.16~exp12ubuntu10.21)"} diff --git a/2022/tr/Days/Containers/elasticsearch-logstash-kibana/logstash/pipeline/logstash-nginx.config b/2022/tr/Days/Containers/elasticsearch-logstash-kibana/logstash/pipeline/logstash-nginx.config new file mode 100644 index 0000000..0e7d7ed --- /dev/null +++ b/2022/tr/Days/Containers/elasticsearch-logstash-kibana/logstash/pipeline/logstash-nginx.config @@ -0,0 +1,30 @@ +input { + file { + path => "/home/nginx.log" + start_position => "beginning" + sincedb_path => "/dev/null" + } +} + +filter { + json { + source => "message" + } + geoip { + source => "remote_ip" + } + useragent { + source => "agent" + target => "useragent" + } +} + +output { + elasticsearch { + hosts => ["http://es:9200"] + index => "nginx" + } + stdout { + codec => rubydebug + } +} diff --git a/2022/tr/Days/Containers/my_wordpress/docker-compose.yaml b/2022/tr/Days/Containers/my_wordpress/docker-compose.yaml new file mode 100644 index 0000000..b78bd21 --- /dev/null +++ b/2022/tr/Days/Containers/my_wordpress/docker-compose.yaml @@ -0,0 +1,31 @@ +version: "3.9" + +services: + db: + image: mysql:5.7 + volumes: + - db_data:/var/lib/mysql + restart: always + environment: + MYSQL_ROOT_PASSWORD: somewordpress + MYSQL_DATABASE: wordpress + MYSQL_USER: wordpress + MYSQL_PASSWORD: wordpress + + wordpress: + depends_on: + - db + image: wordpress:latest + volumes: + - wordpress_data:/var/www/html + ports: + - "8000:80" + restart: always + environment: + WORDPRESS_DB_HOST: db + WORDPRESS_DB_USER: wordpress + WORDPRESS_DB_PASSWORD: wordpress + WORDPRESS_DB_NAME: wordpress +volumes: + db_data: {} + wordpress_data: {} \ No newline at end of file diff --git a/2022/tr/Days/Data/mysql-blueprint.yml b/2022/tr/Days/Data/mysql-blueprint.yml new file mode 100644 index 0000000..d692745 --- /dev/null +++ b/2022/tr/Days/Data/mysql-blueprint.yml @@ -0,0 +1,77 @@ +apiVersion: cr.kanister.io/v1alpha1 +kind: Blueprint +metadata: + name: mysql-blueprint +actions: + backup: + outputArtifacts: + mysqlCloudDump: + keyValue: + s3path: "{{ .Phases.dumpToObjectStore.Output.s3path }}" + phases: + - func: KubeTask + name: dumpToObjectStore + objects: + mysqlSecret: + kind: Secret + name: '{{ index .Object.metadata.labels "app.kubernetes.io/instance" }}' + namespace: '{{ .StatefulSet.Namespace }}' + args: + image: ghcr.io/kanisterio/mysql-sidecar:0.75.0 + namespace: "{{ .StatefulSet.Namespace }}" + command: + - bash + - -o + - errexit + - -o + - pipefail + - -c + - | + s3_path="/mysql-backups/{{ .StatefulSet.Namespace }}/{{ index .Object.metadata.labels "app.kubernetes.io/instance" }}/{{ toDate "2006-01-02T15:04:05.999999999Z07:00" .Time | date "2006-01-02T15-04-05" }}/dump.sql.gz" + root_password="{{ index .Phases.dumpToObjectStore.Secrets.mysqlSecret.Data "mysql-root-password" | toString }}" + mysqldump --column-statistics=0 -u root --password=${root_password} -h {{ index .Object.metadata.labels "app.kubernetes.io/instance" }} --single-transaction --all-databases | gzip - | kando location push --profile '{{ toJson .Profile }}' --path ${s3_path} - + kando output s3path ${s3_path} + restore: + inputArtifactNames: + - mysqlCloudDump + phases: + - func: KubeTask + name: restoreFromBlobStore + objects: + mysqlSecret: + kind: Secret + name: '{{ index .Object.metadata.labels "app.kubernetes.io/instance" }}' + namespace: '{{ .StatefulSet.Namespace }}' + args: + image: ghcr.io/kanisterio/mysql-sidecar:0.75.0 + namespace: "{{ .StatefulSet.Namespace }}" + command: + - bash + - -o + - errexit + - -o + - pipefail + - -c + - | + s3_path="{{ .ArtifactsIn.mysqlCloudDump.KeyValue.s3path }}" + root_password="{{ index .Phases.restoreFromBlobStore.Secrets.mysqlSecret.Data "mysql-root-password" | toString }}" + kando location pull --profile '{{ toJson .Profile }}' --path ${s3_path} - | gunzip | mysql -u root --password=${root_password} -h {{ index .Object.metadata.labels "app.kubernetes.io/instance" }} + delete: + inputArtifactNames: + - mysqlCloudDump + phases: + - func: KubeTask + name: deleteFromBlobStore + args: + image: ghcr.io/kanisterio/mysql-sidecar:0.75.0 + namespace: "{{ .Namespace.Name }}" + command: + - bash + - -o + - errexit + - -o + - pipefail + - -c + - | + s3_path="{{ .ArtifactsIn.mysqlCloudDump.KeyValue.s3path }}" + kando location delete --profile '{{ toJson .Profile }}' --path ${s3_path} \ No newline at end of file diff --git a/2022/tr/Days/Go/day11_example1.go b/2022/tr/Days/Go/day11_example1.go new file mode 100644 index 0000000..8e0a180 --- /dev/null +++ b/2022/tr/Days/Go/day11_example1.go @@ -0,0 +1,8 @@ +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + fmt.Println("Welcome to", challenge, "") +} \ No newline at end of file diff --git a/2022/tr/Days/Go/day11_example2.go b/2022/tr/Days/Go/day11_example2.go new file mode 100644 index 0000000..6fd685c --- /dev/null +++ b/2022/tr/Days/Go/day11_example2.go @@ -0,0 +1,11 @@ +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + const daystotal = 90 + + fmt.Println("Welcome to", challenge, "") + fmt.Println("This is a", daystotal, "challenge") +} \ No newline at end of file diff --git a/2022/tr/Days/Go/day11_example3.go b/2022/tr/Days/Go/day11_example3.go new file mode 100644 index 0000000..a3e6192 --- /dev/null +++ b/2022/tr/Days/Go/day11_example3.go @@ -0,0 +1,13 @@ +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + const daystotal = 90 + var dayscomplete = 11 + + fmt.Println("Welcome to", challenge, "") + fmt.Println("This is a", daystotal, "challenge and you have completed", dayscomplete, "days") + fmt.Println("Great work") +} \ No newline at end of file diff --git a/2022/tr/Days/Go/day11_example4.go b/2022/tr/Days/Go/day11_example4.go new file mode 100644 index 0000000..255bab9 --- /dev/null +++ b/2022/tr/Days/Go/day11_example4.go @@ -0,0 +1,13 @@ +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + const daystotal = 90 + var dayscomplete = 11 + + fmt.Printf("Welcome to %v\n", challenge) + fmt.Printf("This is a %v challenge and you have completed %v days\n", daystotal, dayscomplete) + fmt.Println("Great work") +} \ No newline at end of file diff --git a/2022/tr/Days/Go/day12_example1.go b/2022/tr/Days/Go/day12_example1.go new file mode 100644 index 0000000..81a30d4 --- /dev/null +++ b/2022/tr/Days/Go/day12_example1.go @@ -0,0 +1,21 @@ +package main + +import "fmt" + +func main() { + + challenge := "#90DaysOfDevOps" + const daystotal = 90 + + fmt.Printf("Welcome to %v\n", challenge) + fmt.Printf("This is a %v challenge\n", daystotal) + + var TwitterName string + var DaysComplete int + // ask user for their twitter handle + + TwitterName = "@MichaelCade1" + DaysComplete = 12 + fmt.Printf("%v has completed %v days of the challenge\n", TwitterName, DaysComplete) + fmt.Println("Great work") +} diff --git a/2022/tr/Days/Go/day12_example2.go b/2022/tr/Days/Go/day12_example2.go new file mode 100644 index 0000000..081a9ce --- /dev/null +++ b/2022/tr/Days/Go/day12_example2.go @@ -0,0 +1,24 @@ +package main + +import "fmt" + +func main() { + + const DaysTotal int = 90 + challenge := "#90DaysOfDevOps" + + fmt.Printf("Welcome to the %v challenge.\nThis challenge consists of %v days\n", challenge, DaysTotal) + + var TwitterName string + var DaysCompleted uint + + // asking for user input + fmt.Println("Enter Your Twitter Handle: ") + fmt.Scanln(&TwitterName) + + fmt.Println("How many days have you completed?: ") + fmt.Scanln(&DaysCompleted) + + fmt.Printf("Thank you %v for taking part and completing %v days.\n", TwitterName, DaysCompleted) + fmt.Println("Good luck") +} diff --git a/2022/tr/Days/Go/day12_example3.go b/2022/tr/Days/Go/day12_example3.go new file mode 100644 index 0000000..0b5478d --- /dev/null +++ b/2022/tr/Days/Go/day12_example3.go @@ -0,0 +1,29 @@ +package main + +import "fmt" + +func main() { + + const DaysTotal int = 90 + var remainingDays uint = 90 + challenge := "#90DaysOfDevOps" + + fmt.Printf("Welcome to the %v challenge.\nThis challenge consists of %v days\n", challenge, DaysTotal) + + var TwitterName string + var DaysCompleted uint + + // asking for user input + fmt.Println("Enter Your Twitter Handle: ") + fmt.Scanln(&TwitterName) + + fmt.Println("How many days have you completed?: ") + fmt.Scanln(&DaysCompleted) + + // calculate remaining days + remainingDays = remainingDays - DaysCompleted + + fmt.Printf("Thank you %v for taking part and completing %v days.\n", TwitterName, DaysCompleted) + fmt.Printf("You have %v days remaining for the %v challenge\n", remainingDays, challenge) + fmt.Println("Good luck") +} diff --git a/2022/tr/Days/Go/day12_example4.go b/2022/tr/Days/Go/day12_example4.go new file mode 100644 index 0000000..1a03712 --- /dev/null +++ b/2022/tr/Days/Go/day12_example4.go @@ -0,0 +1,11 @@ +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + + fmt.Println(challenge) + fmt.Println(&challenge) + +} diff --git a/2022/tr/Days/Go/day13_example1.go b/2022/tr/Days/Go/day13_example1.go new file mode 100644 index 0000000..0b5478d --- /dev/null +++ b/2022/tr/Days/Go/day13_example1.go @@ -0,0 +1,29 @@ +package main + +import "fmt" + +func main() { + + const DaysTotal int = 90 + var remainingDays uint = 90 + challenge := "#90DaysOfDevOps" + + fmt.Printf("Welcome to the %v challenge.\nThis challenge consists of %v days\n", challenge, DaysTotal) + + var TwitterName string + var DaysCompleted uint + + // asking for user input + fmt.Println("Enter Your Twitter Handle: ") + fmt.Scanln(&TwitterName) + + fmt.Println("How many days have you completed?: ") + fmt.Scanln(&DaysCompleted) + + // calculate remaining days + remainingDays = remainingDays - DaysCompleted + + fmt.Printf("Thank you %v for taking part and completing %v days.\n", TwitterName, DaysCompleted) + fmt.Printf("You have %v days remaining for the %v challenge\n", remainingDays, challenge) + fmt.Println("Good luck") +} diff --git a/2022/tr/Days/Go/day13_example2.go b/2022/tr/Days/Go/day13_example2.go new file mode 100644 index 0000000..7487cba --- /dev/null +++ b/2022/tr/Days/Go/day13_example2.go @@ -0,0 +1,74 @@ +package main + +import ( + // other imports + "fmt" + "log" + "os" + + "github.com/dghubble/go-twitter/twitter" + "github.com/dghubble/oauth1" +) + +// Credentials stores all of our access/consumer tokens +// and secret keys needed for authentication against +// the twitter REST API. +type Credentials struct { + ConsumerKey string + ConsumerSecret string + AccessToken string + AccessTokenSecret string +} + +// getClient is a helper function that will return a twitter client +// that we can subsequently use to send tweets, or to stream new tweets +// this will take in a pointer to a Credential struct which will contain +// everything needed to authenticate and return a pointer to a twitter Client +// or an error +func getClient(creds *Credentials) (*twitter.Client, error) { + // Pass in your consumer key (API Key) and your Consumer Secret (API Secret) + config := oauth1.NewConfig(creds.ConsumerKey, creds.ConsumerSecret) + // Pass in your Access Token and your Access Token Secret + token := oauth1.NewToken(creds.AccessToken, creds.AccessTokenSecret) + + httpClient := config.Client(oauth1.NoContext, token) + client := twitter.NewClient(httpClient) + + // Verify Credentials + verifyParams := &twitter.AccountVerifyParams{ + SkipStatus: twitter.Bool(true), + IncludeEmail: twitter.Bool(true), + } + + // we can retrieve the user and verify if the credentials + // we have used successfully allow us to log in! + user, _, err := client.Accounts.VerifyCredentials(verifyParams) + if err != nil { + return nil, err + } + + log.Printf("User's ACCOUNT:\n%+v\n", user) + return client, nil +} +func main() { + fmt.Println("Go-Twitter Bot v0.01") + creds := Credentials{ + AccessToken: os.Getenv("ACCESS_TOKEN"), + AccessTokenSecret: os.Getenv("ACCESS_TOKEN_SECRET"), + ConsumerKey: os.Getenv("CONSUMER_KEY"), + ConsumerSecret: os.Getenv("CONSUMER_SECRET"), + } + + client, err := getClient(&creds) + if err != nil { + log.Println("Error getting Twitter Client") + log.Println(err) + } + + tweet, resp, err := client.Statuses.Update("A Test Tweet from the future, testing a #90DaysOfDevOps Program that tweets, tweet tweet", nil) + if err != nil { + log.Println(err) + } + log.Printf("%+v\n", resp) + log.Printf("%+v\n", tweet) +} diff --git a/2022/tr/Days/Go/day13_example3.go b/2022/tr/Days/Go/day13_example3.go new file mode 100644 index 0000000..c761a0f --- /dev/null +++ b/2022/tr/Days/Go/day13_example3.go @@ -0,0 +1,99 @@ +package main + +import ( + // other imports + "fmt" + "log" + "os" + + "github.com/dghubble/go-twitter/twitter" + "github.com/dghubble/oauth1" +) + +// Credentials stores all of our access/consumer tokens +// and secret keys needed for authentication against +// the twitter REST API. +type Credentials struct { + ConsumerKey string + ConsumerSecret string + AccessToken string + AccessTokenSecret string +} + +// getClient is a helper function that will return a twitter client +// that we can subsequently use to send tweets, or to stream new tweets +// this will take in a pointer to a Credential struct which will contain +// everything needed to authenticate and return a pointer to a twitter Client +// or an error +func getClient(creds *Credentials) (*twitter.Client, error) { + // Pass in your consumer key (API Key) and your Consumer Secret (API Secret) + config := oauth1.NewConfig(creds.ConsumerKey, creds.ConsumerSecret) + // Pass in your Access Token and your Access Token Secret + token := oauth1.NewToken(creds.AccessToken, creds.AccessTokenSecret) + + httpClient := config.Client(oauth1.NoContext, token) + client := twitter.NewClient(httpClient) + + // Verify Credentials + verifyParams := &twitter.AccountVerifyParams{ + SkipStatus: twitter.Bool(true), + IncludeEmail: twitter.Bool(true), + } + + // we can retrieve the user and verify if the credentials + // we have used successfully allow us to log in! + user, _, err := client.Accounts.VerifyCredentials(verifyParams) + if err != nil { + return nil, err + } + + log.Printf("User's ACCOUNT:\n%+v\n", user) + return client, nil +} +func main() { + creds := Credentials{ + AccessToken: os.Getenv("ACCESS_TOKEN"), + AccessTokenSecret: os.Getenv("ACCESS_TOKEN_SECRET"), + ConsumerKey: os.Getenv("CONSUMER_KEY"), + ConsumerSecret: os.Getenv("CONSUMER_SECRET"), + } + { + const DaysTotal int = 90 + var remainingDays uint = 90 + challenge := "#90DaysOfDevOps" + + fmt.Printf("Welcome to the %v challenge.\nThis challenge consists of %v days\n", challenge, DaysTotal) + + var TwitterName string + var DaysCompleted uint + + // asking for user input + fmt.Println("Enter Your Twitter Handle: ") + fmt.Scanln(&TwitterName) + + fmt.Println("How many days have you completed?: ") + fmt.Scanln(&DaysCompleted) + + // calculate remaining days + remainingDays = remainingDays - DaysCompleted + + //fmt.Printf("Thank you %v for taking part and completing %v days.\n", TwitterName, DaysCompleted) + //fmt.Printf("You have %v days remaining for the %v challenge\n", remainingDays, challenge) + // fmt.Println("Good luck") + + client, err := getClient(&creds) + if err != nil { + log.Println("Error getting Twitter Client, this is expected if you did not supply your Twitter API tokens") + log.Println(err) + } + + message := fmt.Sprintf("Hey I am %v I have been doing the %v for %v days and I have %v Days left", TwitterName, challenge, DaysCompleted, remainingDays) + tweet, resp, err := client.Statuses.Update(message, nil) + if err != nil { + log.Println(err) + } + log.Printf("%+v\n", resp) + log.Printf("%+v\n", tweet) + } + +} diff --git a/2022/tr/Days/Go/go_help.md b/2022/tr/Days/Go/go_help.md new file mode 100644 index 0000000..6de4a20 --- /dev/null +++ b/2022/tr/Days/Go/go_help.md @@ -0,0 +1,52 @@ +Go, Go dilinin kaynak kodlarını yönetmek için bir araçtır. + +Sözdizimi: + + go [arguments] + +Komutlar şunlardır: + + bug Bir hata raporu başlatır + build Paketleri ve bağımlılıkları derler + clean Nesne ve önbellek dosyalarını temizler + doc Paket veya sembol belgelerini gösterir + env Go ortam bilgilerini yazdırır + fix Paketleri yeni APIleri kullanacak şekilde günceller + fmt Paketlerin kaynak kodlarını gofmt (yeniden biçimlendirme) yapar + generate Kaynak kodu işleyerek Go dosyaları oluşturur + get Mevcut modüle bağımlılıklar ekler ve yükler + install Paketleri ve bağımlılıkları derler ve kurar + list Paketleri veya modülleri listeler + mod Modül bakımı yapar + work Çalışma alanı bakımı yapar + run Go programını derler ve çalıştırır + test Paket testleri yapar + tool Belirtilen go aracını çalıştırır + version Go sürümünü yazdırır + vet Paketlerde olası hataları rapor eder + +Bir komut hakkında daha fazla bilgi için "go help " kullanın. + +Ek yardım konuları: + + buildconstraint Derleme kısıtlamaları + buildmode Derleme modları + c Go ve C arasında çağrılar + cache Derleme ve test önbelleği + environment Ortam değişkenleri + filetype Dosya türleri + go.mod go.mod dosyası + gopath GOPATH ortam değişkeni + gopath-get Eski GOPATH'i alır + goproxy Modül proxy protokolü + importpath İçe aktarma yolu sözdizimi + modules Modüller, modül sürümleri ve daha fazlası + module-get Modül destekli go get + module-auth go.sum aracılığıyla modül kimlik doğrulaması + packages Paket listeleri ve desenler + private Kamusal olmayan kod indirme yapılandırması + testflag test bayrakları + testfunc test fonksiyonları + vcs GOVCS ile sürüm kontrolü + +Daha fazla bilgi için "go help " kullanın. diff --git a/2022/tr/Days/Go/hello.go b/2022/tr/Days/Go/hello.go new file mode 100644 index 0000000..cbf5572 --- /dev/null +++ b/2022/tr/Days/Go/hello.go @@ -0,0 +1,17 @@ +<<<<<<< HEAD:2022/es/Days/Go/hello.go +package main + +import "fmt" + +func main() { + fmt.Println("Until tomorrow #90DaysOfDevOps") +} +======= +package main + +import "fmt" + +func main() { + fmt.Println("Hasta mañana #90DaysOfDevOps") +} +>>>>>>> feature/translateES-03-adaptation:es/Days/Go/hello.go diff --git a/2022/tr/Days/Go/makefile b/2022/tr/Days/Go/makefile new file mode 100644 index 0000000..99b80ab --- /dev/null +++ b/2022/tr/Days/Go/makefile @@ -0,0 +1,19 @@ +BINARY_NAME=90DaysOfDevOps + +build: + GOARCH=amd64 GOOS=darwin go build -o ${BINARY_NAME}_0.2_darwin main.go + GOARCH=amd64 GOOS=linux go build -o ${BINARY_NAME}_0.2_linux main.go + GOARCH=amd64 GOOS=windows go build -o ${BINARY_NAME}_0.2_windows main.go + GOARCH=arm64 GOOS=linux go build -o ${BINARY_NAME}_0.2_linux_arm64 main.go + GOARCH=arm64 GOOS=darwin go build -o ${BINARY_NAME}_0.2_darwin_arm64 main.go + +run: + ./${BINARY_NAME} + +build_and_run: build run + +clean: + go clean + rm ${BINARY_NAME}-darwin + rm ${BINARY_NAME}-linux + rm ${BINARY_NAME}-windows \ No newline at end of file diff --git a/2022/tr/Days/IaC/Docker-Wordpress/docker-wordpress.tf b/2022/tr/Days/IaC/Docker-Wordpress/docker-wordpress.tf new file mode 100644 index 0000000..8752fea --- /dev/null +++ b/2022/tr/Days/IaC/Docker-Wordpress/docker-wordpress.tf @@ -0,0 +1,57 @@ +terraform { + required_providers { + docker = { + source = "kreuzwerker/docker" + version = "2.16.0" + } + } +} + +provider "docker" {} + +variable wordpress_port { + default = "8080" +} + +resource "docker_volume" "db_data" { + name = "db_data" +} + +resource "docker_network" "wordpress_net" { + name = "wordpress_net" +} + +resource "docker_container" "db" { + name = "db" + image = "mysql:5.7" + restart = "always" + network_mode = "wordpress_net" + env = [ + "MYSQL_ROOT_PASSWORD=wordpress", + "MYSQL_PASSWORD=wordpress", + "MYSQL_USER=wordpress", + "MYSQL_DATABASE=wordpress" + ] + mounts { + type = "volume" + target = "/var/lib/mysql" + source = "db_data" + } +} + +resource "docker_container" "wordpress" { + name = "wordpress" + image = "wordpress:latest" + restart = "always" + network_mode = "wordpress_net" + env = [ + "WORDPRESS_DB_HOST=db:3306", + "WORDPRESS_DB_USER=wordpress", + "WORDPRESS_DB_NAME=wordpress", + "WORDPRESS_DB_PASSWORD=wordpress" + ] + ports { + internal = "80" + external = "${var.wordpress_port}" + } +} \ No newline at end of file diff --git a/2022/tr/Days/IaC/Docker/docker.tf b/2022/tr/Days/IaC/Docker/docker.tf new file mode 100644 index 0000000..4650740 --- /dev/null +++ b/2022/tr/Days/IaC/Docker/docker.tf @@ -0,0 +1,24 @@ +terraform { + required_providers { + docker = { + source = "kreuzwerker/docker" + version = "2.16.0" + } + } +} + +provider "docker" {} + +resource "docker_image" "nginx" { + name = "nginx:latest" + keep_locally = false +} + +resource "docker_container" "nginx" { + image = docker_image.nginx.latest + name = "tutorial" + ports { + internal = 80 + external = 8000 + } +} \ No newline at end of file diff --git a/2022/tr/Days/IaC/Hello-world/main.tf b/2022/tr/Days/IaC/Hello-world/main.tf new file mode 100644 index 0000000..3f06a22 --- /dev/null +++ b/2022/tr/Days/IaC/Hello-world/main.tf @@ -0,0 +1,11 @@ +terraform { + # This module is now only being tested with Terraform 0.13.x. However, to make upgrading easier, we are setting + # 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it + # forwards compatible with 0.13.x code. + required_version = ">= 0.12.26" +} + +# website::tag::1:: The simplest possible Terraform module: it just outputs "Hello, World!" +output "hello_world" { + value = "Hello, 90DaysOfDevOps from Terraform" +} \ No newline at end of file diff --git a/2022/tr/Days/IaC/Kubernetes/kubernetes.tf b/2022/tr/Days/IaC/Kubernetes/kubernetes.tf new file mode 100644 index 0000000..18ed09b --- /dev/null +++ b/2022/tr/Days/IaC/Kubernetes/kubernetes.tf @@ -0,0 +1,63 @@ +terraform { + required_providers { + kubernetes = { + source = "hashicorp/kubernetes" + version = ">= 2.0.0" + } + } +} +provider "kubernetes" { + config_path = "~/.kube/config" +} +resource "kubernetes_namespace" "test" { + metadata { + name = "nginx" + } +} +resource "kubernetes_deployment" "test" { + metadata { + name = "nginx" + namespace = kubernetes_namespace.test.metadata.0.name + } + spec { + replicas = 2 + selector { + match_labels = { + app = "MyTestApp" + } + } + template { + metadata { + labels = { + app = "MyTestApp" + } + } + spec { + container { + image = "nginx" + name = "nginx-container" + port { + container_port = 80 + } + } + } + } + } +} +resource "kubernetes_service" "test" { + metadata { + name = "nginx" + namespace = kubernetes_namespace.test.metadata.0.name + } + spec { + selector = { + app = kubernetes_deployment.test.spec.0.template.0.metadata.0.labels.app + } + type = "NodePort" + port { + node_port = 30201 + port = 80 + target_port = 80 + } + } +} \ No newline at end of file diff --git a/2022/tr/Days/IaC/Virtualbox/virtualbox.tf b/2022/tr/Days/IaC/Virtualbox/virtualbox.tf new file mode 100644 index 0000000..c85e31d --- /dev/null +++ b/2022/tr/Days/IaC/Virtualbox/virtualbox.tf @@ -0,0 +1,31 @@ +terraform { + required_providers { + virtualbox = { + source = "terra-farm/virtualbox" + version = "0.2.2-alpha.1" + } + } +} + +# There are currently no configuration options for the provider itself. + +resource "virtualbox_vm" "node" { + count = 2 + name = format("node-%02d", count.index + 1) + image = "https://app.vagrantup.com/ubuntu/boxes/bionic64/versions/20180903.0.0/providers/virtualbox.box" + cpus = 2 + memory = "512 mib" + + network_adapter { + type = "hostonly" + host_interface = "vboxnet1" + } +} + +output "IPAddr" { + value = element(virtualbox_vm.node.*.network_adapter.0.ipv4_address, 1) +} + +output "IPAddr_2" { + value = element(virtualbox_vm.node.*.network_adapter.0.ipv4_address, 2) +} \ No newline at end of file diff --git a/2022/tr/Days/Images/Day10_Go1.png b/2022/tr/Days/Images/Day10_Go1.png new file mode 100644 index 0000000..644f8e0 Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go1.png differ diff --git a/2022/tr/Days/Images/Day10_Go2.png b/2022/tr/Days/Images/Day10_Go2.png new file mode 100644 index 0000000..34ed489 Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go2.png differ diff --git a/2022/tr/Days/Images/Day10_Go3.png b/2022/tr/Days/Images/Day10_Go3.png new file mode 100644 index 0000000..e75e291 Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go3.png differ diff --git a/2022/tr/Days/Images/Day10_Go4.png b/2022/tr/Days/Images/Day10_Go4.png new file mode 100644 index 0000000..6fedb67 Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go4.png differ diff --git a/2022/tr/Days/Images/Day10_Go5.png b/2022/tr/Days/Images/Day10_Go5.png new file mode 100644 index 0000000..a421e5b Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go5.png differ diff --git a/2022/tr/Days/Images/Day10_Go6.png b/2022/tr/Days/Images/Day10_Go6.png new file mode 100644 index 0000000..06e95ca Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go6.png differ diff --git a/2022/tr/Days/Images/Day10_Go7.png b/2022/tr/Days/Images/Day10_Go7.png new file mode 100644 index 0000000..8e2ba0e Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go7.png differ diff --git a/2022/tr/Days/Images/Day10_Go8.png b/2022/tr/Days/Images/Day10_Go8.png new file mode 100644 index 0000000..259c4d9 Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go8.png differ diff --git a/2022/tr/Days/Images/Day10_Go9.png b/2022/tr/Days/Images/Day10_Go9.png new file mode 100644 index 0000000..593b879 Binary files /dev/null and b/2022/tr/Days/Images/Day10_Go9.png differ diff --git a/2022/tr/Days/Images/Day11_Go1.png b/2022/tr/Days/Images/Day11_Go1.png new file mode 100644 index 0000000..9112ec6 Binary files /dev/null and b/2022/tr/Days/Images/Day11_Go1.png differ diff --git a/2022/tr/Days/Images/Day11_Go2.png b/2022/tr/Days/Images/Day11_Go2.png new file mode 100644 index 0000000..f33f82e Binary files /dev/null and b/2022/tr/Days/Images/Day11_Go2.png differ diff --git a/2022/tr/Days/Images/Day11_Go3.png b/2022/tr/Days/Images/Day11_Go3.png new file mode 100644 index 0000000..892d544 Binary files /dev/null and b/2022/tr/Days/Images/Day11_Go3.png differ diff --git a/2022/tr/Days/Images/Day12_Go1.png b/2022/tr/Days/Images/Day12_Go1.png new file mode 100644 index 0000000..a985485 Binary files /dev/null and b/2022/tr/Days/Images/Day12_Go1.png differ diff --git a/2022/tr/Days/Images/Day12_Go2.png b/2022/tr/Days/Images/Day12_Go2.png new file mode 100644 index 0000000..e4dfc38 Binary files /dev/null and b/2022/tr/Days/Images/Day12_Go2.png differ diff --git a/2022/tr/Days/Images/Day12_Go3.png b/2022/tr/Days/Images/Day12_Go3.png new file mode 100644 index 0000000..f42c1e4 Binary files /dev/null and b/2022/tr/Days/Images/Day12_Go3.png differ diff --git a/2022/tr/Days/Images/Day12_Go4.png b/2022/tr/Days/Images/Day12_Go4.png new file mode 100644 index 0000000..e539d8e Binary files /dev/null and b/2022/tr/Days/Images/Day12_Go4.png differ diff --git a/2022/tr/Days/Images/Day13_Go1.png b/2022/tr/Days/Images/Day13_Go1.png new file mode 100644 index 0000000..8bb10c8 Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go1.png differ diff --git a/2022/tr/Days/Images/Day13_Go2.png b/2022/tr/Days/Images/Day13_Go2.png new file mode 100644 index 0000000..72e7352 Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go2.png differ diff --git a/2022/tr/Days/Images/Day13_Go3.png b/2022/tr/Days/Images/Day13_Go3.png new file mode 100644 index 0000000..f7adc1a Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go3.png differ diff --git a/2022/tr/Days/Images/Day13_Go4.png b/2022/tr/Days/Images/Day13_Go4.png new file mode 100644 index 0000000..a6a4a28 Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go4.png differ diff --git a/2022/tr/Days/Images/Day13_Go5.png b/2022/tr/Days/Images/Day13_Go5.png new file mode 100644 index 0000000..100cd3c Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go5.png differ diff --git a/2022/tr/Days/Images/Day13_Go6.png b/2022/tr/Days/Images/Day13_Go6.png new file mode 100644 index 0000000..e24f754 Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go6.png differ diff --git a/2022/tr/Days/Images/Day13_Go7.png b/2022/tr/Days/Images/Day13_Go7.png new file mode 100644 index 0000000..d2c5076 Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go7.png differ diff --git a/2022/tr/Days/Images/Day13_Go8.png b/2022/tr/Days/Images/Day13_Go8.png new file mode 100644 index 0000000..9769753 Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go8.png differ diff --git a/2022/tr/Days/Images/Day13_Go9.png b/2022/tr/Days/Images/Day13_Go9.png new file mode 100644 index 0000000..f29e646 Binary files /dev/null and b/2022/tr/Days/Images/Day13_Go9.png differ diff --git a/2022/tr/Days/Images/Day14_Linux1.png b/2022/tr/Days/Images/Day14_Linux1.png new file mode 100644 index 0000000..edeaee9 Binary files /dev/null and b/2022/tr/Days/Images/Day14_Linux1.png differ diff --git a/2022/tr/Days/Images/Day14_Linux2.png b/2022/tr/Days/Images/Day14_Linux2.png new file mode 100644 index 0000000..c7dc60f Binary files /dev/null and b/2022/tr/Days/Images/Day14_Linux2.png differ diff --git a/2022/tr/Days/Images/Day14_Linux3.png b/2022/tr/Days/Images/Day14_Linux3.png new file mode 100644 index 0000000..b42aeb6 Binary files /dev/null and b/2022/tr/Days/Images/Day14_Linux3.png differ diff --git a/2022/tr/Days/Images/Day14_Linux4.png b/2022/tr/Days/Images/Day14_Linux4.png new file mode 100644 index 0000000..20f6904 Binary files /dev/null and b/2022/tr/Days/Images/Day14_Linux4.png differ diff --git a/2022/tr/Days/Images/Day14_Linux5.png b/2022/tr/Days/Images/Day14_Linux5.png new file mode 100644 index 0000000..62242bc Binary files /dev/null and b/2022/tr/Days/Images/Day14_Linux5.png differ diff --git a/2022/tr/Days/Images/Day15_Linux1.png b/2022/tr/Days/Images/Day15_Linux1.png new file mode 100644 index 0000000..f58f962 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux1.png differ diff --git a/2022/tr/Days/Images/Day15_Linux10.png b/2022/tr/Days/Images/Day15_Linux10.png new file mode 100644 index 0000000..4ef36c3 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux10.png differ diff --git a/2022/tr/Days/Images/Day15_Linux11.png b/2022/tr/Days/Images/Day15_Linux11.png new file mode 100644 index 0000000..b2f4a6b Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux11.png differ diff --git a/2022/tr/Days/Images/Day15_Linux12.png b/2022/tr/Days/Images/Day15_Linux12.png new file mode 100644 index 0000000..0c00cc2 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux12.png differ diff --git a/2022/tr/Days/Images/Day15_Linux13.png b/2022/tr/Days/Images/Day15_Linux13.png new file mode 100644 index 0000000..a254cfa Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux13.png differ diff --git a/2022/tr/Days/Images/Day15_Linux14.png b/2022/tr/Days/Images/Day15_Linux14.png new file mode 100644 index 0000000..2f9d87c Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux14.png differ diff --git a/2022/tr/Days/Images/Day15_Linux15.png b/2022/tr/Days/Images/Day15_Linux15.png new file mode 100644 index 0000000..fbfa646 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux15.png differ diff --git a/2022/tr/Days/Images/Day15_Linux16.png b/2022/tr/Days/Images/Day15_Linux16.png new file mode 100644 index 0000000..406cb71 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux16.png differ diff --git a/2022/tr/Days/Images/Day15_Linux17.png b/2022/tr/Days/Images/Day15_Linux17.png new file mode 100644 index 0000000..767e1f8 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux17.png differ diff --git a/2022/tr/Days/Images/Day15_Linux18.png b/2022/tr/Days/Images/Day15_Linux18.png new file mode 100644 index 0000000..9a9bc34 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux18.png differ diff --git a/2022/tr/Days/Images/Day15_Linux19.png b/2022/tr/Days/Images/Day15_Linux19.png new file mode 100644 index 0000000..2cb3c41 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux19.png differ diff --git a/2022/tr/Days/Images/Day15_Linux2.png b/2022/tr/Days/Images/Day15_Linux2.png new file mode 100644 index 0000000..b41a220 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux2.png differ diff --git a/2022/tr/Days/Images/Day15_Linux20.png b/2022/tr/Days/Images/Day15_Linux20.png new file mode 100644 index 0000000..41ddc9f Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux20.png differ diff --git a/2022/tr/Days/Images/Day15_Linux21.png b/2022/tr/Days/Images/Day15_Linux21.png new file mode 100644 index 0000000..fda3704 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux21.png differ diff --git a/2022/tr/Days/Images/Day15_Linux22.png b/2022/tr/Days/Images/Day15_Linux22.png new file mode 100644 index 0000000..d2e0bd3 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux22.png differ diff --git a/2022/tr/Days/Images/Day15_Linux23.png b/2022/tr/Days/Images/Day15_Linux23.png new file mode 100644 index 0000000..2e6633f Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux23.png differ diff --git a/2022/tr/Days/Images/Day15_Linux24.png b/2022/tr/Days/Images/Day15_Linux24.png new file mode 100644 index 0000000..c8d7c45 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux24.png differ diff --git a/2022/tr/Days/Images/Day15_Linux25.png b/2022/tr/Days/Images/Day15_Linux25.png new file mode 100644 index 0000000..f8e9122 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux25.png differ diff --git a/2022/tr/Days/Images/Day15_Linux26.png b/2022/tr/Days/Images/Day15_Linux26.png new file mode 100644 index 0000000..8f0c0fb Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux26.png differ diff --git a/2022/tr/Days/Images/Day15_Linux27.png b/2022/tr/Days/Images/Day15_Linux27.png new file mode 100644 index 0000000..e05da71 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux27.png differ diff --git a/2022/tr/Days/Images/Day15_Linux28.png b/2022/tr/Days/Images/Day15_Linux28.png new file mode 100644 index 0000000..b820ffc Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux28.png differ diff --git a/2022/tr/Days/Images/Day15_Linux29.png b/2022/tr/Days/Images/Day15_Linux29.png new file mode 100644 index 0000000..e20f8a9 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux29.png differ diff --git a/2022/tr/Days/Images/Day15_Linux3.png b/2022/tr/Days/Images/Day15_Linux3.png new file mode 100644 index 0000000..8faf153 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux3.png differ diff --git a/2022/tr/Days/Images/Day15_Linux30.png b/2022/tr/Days/Images/Day15_Linux30.png new file mode 100644 index 0000000..b075d7b Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux30.png differ diff --git a/2022/tr/Days/Images/Day15_Linux31.png b/2022/tr/Days/Images/Day15_Linux31.png new file mode 100644 index 0000000..deb710f Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux31.png differ diff --git a/2022/tr/Days/Images/Day15_Linux4.png b/2022/tr/Days/Images/Day15_Linux4.png new file mode 100644 index 0000000..d272279 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux4.png differ diff --git a/2022/tr/Days/Images/Day15_Linux5.png b/2022/tr/Days/Images/Day15_Linux5.png new file mode 100644 index 0000000..ca68e67 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux5.png differ diff --git a/2022/tr/Days/Images/Day15_Linux6.png b/2022/tr/Days/Images/Day15_Linux6.png new file mode 100644 index 0000000..6948000 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux6.png differ diff --git a/2022/tr/Days/Images/Day15_Linux7.png b/2022/tr/Days/Images/Day15_Linux7.png new file mode 100644 index 0000000..160baa0 Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux7.png differ diff --git a/2022/tr/Days/Images/Day15_Linux8.png b/2022/tr/Days/Images/Day15_Linux8.png new file mode 100644 index 0000000..b1b529c Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux8.png differ diff --git a/2022/tr/Days/Images/Day15_Linux9.png b/2022/tr/Days/Images/Day15_Linux9.png new file mode 100644 index 0000000..c527dcd Binary files /dev/null and b/2022/tr/Days/Images/Day15_Linux9.png differ diff --git a/2022/tr/Days/Images/Day16_Linux1.png b/2022/tr/Days/Images/Day16_Linux1.png new file mode 100644 index 0000000..9025924 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux1.png differ diff --git a/2022/tr/Days/Images/Day16_Linux10.png b/2022/tr/Days/Images/Day16_Linux10.png new file mode 100644 index 0000000..9e9b5c5 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux10.png differ diff --git a/2022/tr/Days/Images/Day16_Linux11.png b/2022/tr/Days/Images/Day16_Linux11.png new file mode 100644 index 0000000..1006c54 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux11.png differ diff --git a/2022/tr/Days/Images/Day16_Linux12.png b/2022/tr/Days/Images/Day16_Linux12.png new file mode 100644 index 0000000..e3ab416 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux12.png differ diff --git a/2022/tr/Days/Images/Day16_Linux13.png b/2022/tr/Days/Images/Day16_Linux13.png new file mode 100644 index 0000000..2f78851 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux13.png differ diff --git a/2022/tr/Days/Images/Day16_Linux14.png b/2022/tr/Days/Images/Day16_Linux14.png new file mode 100644 index 0000000..0029887 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux14.png differ diff --git a/2022/tr/Days/Images/Day16_Linux15.png b/2022/tr/Days/Images/Day16_Linux15.png new file mode 100644 index 0000000..f2f986d Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux15.png differ diff --git a/2022/tr/Days/Images/Day16_Linux16.png b/2022/tr/Days/Images/Day16_Linux16.png new file mode 100644 index 0000000..cdb603d Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux16.png differ diff --git a/2022/tr/Days/Images/Day16_Linux17.png b/2022/tr/Days/Images/Day16_Linux17.png new file mode 100644 index 0000000..119c3b3 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux17.png differ diff --git a/2022/tr/Days/Images/Day16_Linux18.png b/2022/tr/Days/Images/Day16_Linux18.png new file mode 100644 index 0000000..ca5f2c8 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux18.png differ diff --git a/2022/tr/Days/Images/Day16_Linux19.png b/2022/tr/Days/Images/Day16_Linux19.png new file mode 100644 index 0000000..d09e403 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux19.png differ diff --git a/2022/tr/Days/Images/Day16_Linux2.png b/2022/tr/Days/Images/Day16_Linux2.png new file mode 100644 index 0000000..1debfc3 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux2.png differ diff --git a/2022/tr/Days/Images/Day16_Linux20.png b/2022/tr/Days/Images/Day16_Linux20.png new file mode 100644 index 0000000..d425306 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux20.png differ diff --git a/2022/tr/Days/Images/Day16_Linux21.png b/2022/tr/Days/Images/Day16_Linux21.png new file mode 100644 index 0000000..f3d96ed Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux21.png differ diff --git a/2022/tr/Days/Images/Day16_Linux22.png b/2022/tr/Days/Images/Day16_Linux22.png new file mode 100644 index 0000000..40566f6 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux22.png differ diff --git a/2022/tr/Days/Images/Day16_Linux23.png b/2022/tr/Days/Images/Day16_Linux23.png new file mode 100644 index 0000000..8eecae9 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux23.png differ diff --git a/2022/tr/Days/Images/Day16_Linux24.png b/2022/tr/Days/Images/Day16_Linux24.png new file mode 100644 index 0000000..a5b0e1a Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux24.png differ diff --git a/2022/tr/Days/Images/Day16_Linux25.png b/2022/tr/Days/Images/Day16_Linux25.png new file mode 100644 index 0000000..e749a04 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux25.png differ diff --git a/2022/tr/Days/Images/Day16_Linux26.png b/2022/tr/Days/Images/Day16_Linux26.png new file mode 100644 index 0000000..115f0bd Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux26.png differ diff --git a/2022/tr/Days/Images/Day16_Linux3.png b/2022/tr/Days/Images/Day16_Linux3.png new file mode 100644 index 0000000..1823dc5 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux3.png differ diff --git a/2022/tr/Days/Images/Day16_Linux4.png b/2022/tr/Days/Images/Day16_Linux4.png new file mode 100644 index 0000000..409176a Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux4.png differ diff --git a/2022/tr/Days/Images/Day16_Linux5.png b/2022/tr/Days/Images/Day16_Linux5.png new file mode 100644 index 0000000..af2ea62 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux5.png differ diff --git a/2022/tr/Days/Images/Day16_Linux6.png b/2022/tr/Days/Images/Day16_Linux6.png new file mode 100644 index 0000000..c63b6b1 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux6.png differ diff --git a/2022/tr/Days/Images/Day16_Linux7.png b/2022/tr/Days/Images/Day16_Linux7.png new file mode 100644 index 0000000..b9f5bf7 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux7.png differ diff --git a/2022/tr/Days/Images/Day16_Linux8.png b/2022/tr/Days/Images/Day16_Linux8.png new file mode 100644 index 0000000..e736582 Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux8.png differ diff --git a/2022/tr/Days/Images/Day16_Linux9.png b/2022/tr/Days/Images/Day16_Linux9.png new file mode 100644 index 0000000..feac2dd Binary files /dev/null and b/2022/tr/Days/Images/Day16_Linux9.png differ diff --git a/2022/tr/Days/Images/Day17_Linux1.png b/2022/tr/Days/Images/Day17_Linux1.png new file mode 100644 index 0000000..dfd369e Binary files /dev/null and b/2022/tr/Days/Images/Day17_Linux1.png differ diff --git a/2022/tr/Days/Images/Day17_Linux2.png b/2022/tr/Days/Images/Day17_Linux2.png new file mode 100644 index 0000000..6bcfb87 Binary files /dev/null and b/2022/tr/Days/Images/Day17_Linux2.png differ diff --git a/2022/tr/Days/Images/Day17_Linux3.png b/2022/tr/Days/Images/Day17_Linux3.png new file mode 100644 index 0000000..4c88801 Binary files /dev/null and b/2022/tr/Days/Images/Day17_Linux3.png differ diff --git a/2022/tr/Days/Images/Day17_Linux4.png b/2022/tr/Days/Images/Day17_Linux4.png new file mode 100644 index 0000000..11e77ba Binary files /dev/null and b/2022/tr/Days/Images/Day17_Linux4.png differ diff --git a/2022/tr/Days/Images/Day17_Linux5.png b/2022/tr/Days/Images/Day17_Linux5.png new file mode 100644 index 0000000..93253dc Binary files /dev/null and b/2022/tr/Days/Images/Day17_Linux5.png differ diff --git a/2022/tr/Days/Images/Day17_Linux6.png b/2022/tr/Days/Images/Day17_Linux6.png new file mode 100644 index 0000000..155cc14 Binary files /dev/null and b/2022/tr/Days/Images/Day17_Linux6.png differ diff --git a/2022/tr/Days/Images/Day17_Linux7.png b/2022/tr/Days/Images/Day17_Linux7.png new file mode 100644 index 0000000..dc9dcac Binary files /dev/null and b/2022/tr/Days/Images/Day17_Linux7.png differ diff --git a/2022/tr/Days/Images/Day17_Linux8.png b/2022/tr/Days/Images/Day17_Linux8.png new file mode 100644 index 0000000..41472cf Binary files /dev/null and b/2022/tr/Days/Images/Day17_Linux8.png differ diff --git a/2022/tr/Days/Images/Day18_Linux1.png b/2022/tr/Days/Images/Day18_Linux1.png new file mode 100644 index 0000000..5c53c3c Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux1.png differ diff --git a/2022/tr/Days/Images/Day18_Linux10.png b/2022/tr/Days/Images/Day18_Linux10.png new file mode 100644 index 0000000..1eeba6f Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux10.png differ diff --git a/2022/tr/Days/Images/Day18_Linux11.png b/2022/tr/Days/Images/Day18_Linux11.png new file mode 100644 index 0000000..f741f69 Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux11.png differ diff --git a/2022/tr/Days/Images/Day18_Linux12.png b/2022/tr/Days/Images/Day18_Linux12.png new file mode 100644 index 0000000..7edf5bb Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux12.png differ diff --git a/2022/tr/Days/Images/Day18_Linux2.png b/2022/tr/Days/Images/Day18_Linux2.png new file mode 100644 index 0000000..7580768 Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux2.png differ diff --git a/2022/tr/Days/Images/Day18_Linux3.png b/2022/tr/Days/Images/Day18_Linux3.png new file mode 100644 index 0000000..7171396 Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux3.png differ diff --git a/2022/tr/Days/Images/Day18_Linux4.png b/2022/tr/Days/Images/Day18_Linux4.png new file mode 100644 index 0000000..fe09ea7 Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux4.png differ diff --git a/2022/tr/Days/Images/Day18_Linux5.png b/2022/tr/Days/Images/Day18_Linux5.png new file mode 100644 index 0000000..b66c16f Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux5.png differ diff --git a/2022/tr/Days/Images/Day18_Linux6.png b/2022/tr/Days/Images/Day18_Linux6.png new file mode 100644 index 0000000..a6c5fe7 Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux6.png differ diff --git a/2022/tr/Days/Images/Day18_Linux7.png b/2022/tr/Days/Images/Day18_Linux7.png new file mode 100644 index 0000000..63ec9c1 Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux7.png differ diff --git a/2022/tr/Days/Images/Day18_Linux8.png b/2022/tr/Days/Images/Day18_Linux8.png new file mode 100644 index 0000000..8ed8ecd Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux8.png differ diff --git a/2022/tr/Days/Images/Day18_Linux9.png b/2022/tr/Days/Images/Day18_Linux9.png new file mode 100644 index 0000000..5131c24 Binary files /dev/null and b/2022/tr/Days/Images/Day18_Linux9.png differ diff --git a/2022/tr/Days/Images/Day19_Linux1.png b/2022/tr/Days/Images/Day19_Linux1.png new file mode 100644 index 0000000..d3438a6 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux1.png differ diff --git a/2022/tr/Days/Images/Day19_Linux10.png b/2022/tr/Days/Images/Day19_Linux10.png new file mode 100644 index 0000000..c92970f Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux10.png differ diff --git a/2022/tr/Days/Images/Day19_Linux11.png b/2022/tr/Days/Images/Day19_Linux11.png new file mode 100644 index 0000000..3b5f3fb Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux11.png differ diff --git a/2022/tr/Days/Images/Day19_Linux12.png b/2022/tr/Days/Images/Day19_Linux12.png new file mode 100644 index 0000000..2c14cf7 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux12.png differ diff --git a/2022/tr/Days/Images/Day19_Linux13.png b/2022/tr/Days/Images/Day19_Linux13.png new file mode 100644 index 0000000..5a97d74 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux13.png differ diff --git a/2022/tr/Days/Images/Day19_Linux14.png b/2022/tr/Days/Images/Day19_Linux14.png new file mode 100644 index 0000000..43e9a5f Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux14.png differ diff --git a/2022/tr/Days/Images/Day19_Linux15.png b/2022/tr/Days/Images/Day19_Linux15.png new file mode 100644 index 0000000..4b50a44 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux15.png differ diff --git a/2022/tr/Days/Images/Day19_Linux16.png b/2022/tr/Days/Images/Day19_Linux16.png new file mode 100644 index 0000000..74a7cd7 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux16.png differ diff --git a/2022/tr/Days/Images/Day19_Linux2.png b/2022/tr/Days/Images/Day19_Linux2.png new file mode 100644 index 0000000..cb60be0 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux2.png differ diff --git a/2022/tr/Days/Images/Day19_Linux3.png b/2022/tr/Days/Images/Day19_Linux3.png new file mode 100644 index 0000000..8dae0b3 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux3.png differ diff --git a/2022/tr/Days/Images/Day19_Linux4.png b/2022/tr/Days/Images/Day19_Linux4.png new file mode 100644 index 0000000..04c1050 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux4.png differ diff --git a/2022/tr/Days/Images/Day19_Linux5.png b/2022/tr/Days/Images/Day19_Linux5.png new file mode 100644 index 0000000..d88d511 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux5.png differ diff --git a/2022/tr/Days/Images/Day19_Linux6.png b/2022/tr/Days/Images/Day19_Linux6.png new file mode 100644 index 0000000..784ba2f Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux6.png differ diff --git a/2022/tr/Days/Images/Day19_Linux7.png b/2022/tr/Days/Images/Day19_Linux7.png new file mode 100644 index 0000000..8a5e1fe Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux7.png differ diff --git a/2022/tr/Days/Images/Day19_Linux8.png b/2022/tr/Days/Images/Day19_Linux8.png new file mode 100644 index 0000000..331f590 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux8.png differ diff --git a/2022/tr/Days/Images/Day19_Linux9.png b/2022/tr/Days/Images/Day19_Linux9.png new file mode 100644 index 0000000..70a81e0 Binary files /dev/null and b/2022/tr/Days/Images/Day19_Linux9.png differ diff --git a/2022/tr/Days/Images/Day20_Linux1.png b/2022/tr/Days/Images/Day20_Linux1.png new file mode 100644 index 0000000..1137568 Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux1.png differ diff --git a/2022/tr/Days/Images/Day20_Linux2.png b/2022/tr/Days/Images/Day20_Linux2.png new file mode 100644 index 0000000..231efda Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux2.png differ diff --git a/2022/tr/Days/Images/Day20_Linux3.png b/2022/tr/Days/Images/Day20_Linux3.png new file mode 100644 index 0000000..38d34fb Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux3.png differ diff --git a/2022/tr/Days/Images/Day20_Linux4.png b/2022/tr/Days/Images/Day20_Linux4.png new file mode 100644 index 0000000..f324571 Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux4.png differ diff --git a/2022/tr/Days/Images/Day20_Linux5.png b/2022/tr/Days/Images/Day20_Linux5.png new file mode 100644 index 0000000..132c641 Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux5.png differ diff --git a/2022/tr/Days/Images/Day20_Linux6.png b/2022/tr/Days/Images/Day20_Linux6.png new file mode 100644 index 0000000..e05fc00 Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux6.png differ diff --git a/2022/tr/Days/Images/Day20_Linux7.png b/2022/tr/Days/Images/Day20_Linux7.png new file mode 100644 index 0000000..5909db4 Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux7.png differ diff --git a/2022/tr/Days/Images/Day20_Linux8.png b/2022/tr/Days/Images/Day20_Linux8.png new file mode 100644 index 0000000..341a153 Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux8.png differ diff --git a/2022/tr/Days/Images/Day20_Linux9.png b/2022/tr/Days/Images/Day20_Linux9.png new file mode 100644 index 0000000..30cc9b1 Binary files /dev/null and b/2022/tr/Days/Images/Day20_Linux9.png differ diff --git a/2022/tr/Days/Images/Day20_YouTube.png b/2022/tr/Days/Images/Day20_YouTube.png new file mode 100644 index 0000000..cbc4112 Binary files /dev/null and b/2022/tr/Days/Images/Day20_YouTube.png differ diff --git a/2022/tr/Days/Images/Day21_Networking1.png b/2022/tr/Days/Images/Day21_Networking1.png new file mode 100644 index 0000000..b97ceb2 Binary files /dev/null and b/2022/tr/Days/Images/Day21_Networking1.png differ diff --git a/2022/tr/Days/Images/Day21_Networking2.png b/2022/tr/Days/Images/Day21_Networking2.png new file mode 100644 index 0000000..2ef7f0d Binary files /dev/null and b/2022/tr/Days/Images/Day21_Networking2.png differ diff --git a/2022/tr/Days/Images/Day21_Networking3.png b/2022/tr/Days/Images/Day21_Networking3.png new file mode 100644 index 0000000..89062d0 Binary files /dev/null and b/2022/tr/Days/Images/Day21_Networking3.png differ diff --git a/2022/tr/Days/Images/Day21_Networking4.png b/2022/tr/Days/Images/Day21_Networking4.png new file mode 100644 index 0000000..09e70c7 Binary files /dev/null and b/2022/tr/Days/Images/Day21_Networking4.png differ diff --git a/2022/tr/Days/Images/Day21_Networking5.png b/2022/tr/Days/Images/Day21_Networking5.png new file mode 100644 index 0000000..59643c1 Binary files /dev/null and b/2022/tr/Days/Images/Day21_Networking5.png differ diff --git a/2022/tr/Days/Images/Day22_Networking2.png b/2022/tr/Days/Images/Day22_Networking2.png new file mode 100644 index 0000000..f35be2d Binary files /dev/null and b/2022/tr/Days/Images/Day22_Networking2.png differ diff --git a/2022/tr/Days/Images/Day22_Networking3.png b/2022/tr/Days/Images/Day22_Networking3.png new file mode 100644 index 0000000..bbf2b0e Binary files /dev/null and b/2022/tr/Days/Images/Day22_Networking3.png differ diff --git a/2022/tr/Days/Images/Day22_Networking4.png b/2022/tr/Days/Images/Day22_Networking4.png new file mode 100644 index 0000000..239757c Binary files /dev/null and b/2022/tr/Days/Images/Day22_Networking4.png differ diff --git a/2022/tr/Days/Images/Day22_Networking5.png b/2022/tr/Days/Images/Day22_Networking5.png new file mode 100644 index 0000000..22a8a37 Binary files /dev/null and b/2022/tr/Days/Images/Day22_Networking5.png differ diff --git a/2022/tr/Days/Images/Day22_Networking6.png b/2022/tr/Days/Images/Day22_Networking6.png new file mode 100644 index 0000000..b0c21e1 Binary files /dev/null and b/2022/tr/Days/Images/Day22_Networking6.png differ diff --git a/2022/tr/Days/Images/Day22_Networking7.png b/2022/tr/Days/Images/Day22_Networking7.png new file mode 100644 index 0000000..0bf9510 Binary files /dev/null and b/2022/tr/Days/Images/Day22_Networking7.png differ diff --git a/2022/tr/Days/Images/Day22_Networking8.png b/2022/tr/Days/Images/Day22_Networking8.png new file mode 100644 index 0000000..efb81ad Binary files /dev/null and b/2022/tr/Days/Images/Day22_Networking8.png differ diff --git a/2022/tr/Days/Images/Day23_Networking1.png b/2022/tr/Days/Images/Day23_Networking1.png new file mode 100644 index 0000000..f631c6f Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking1.png differ diff --git a/2022/tr/Days/Images/Day23_Networking2.png b/2022/tr/Days/Images/Day23_Networking2.png new file mode 100644 index 0000000..b316958 Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking2.png differ diff --git a/2022/tr/Days/Images/Day23_Networking3.png b/2022/tr/Days/Images/Day23_Networking3.png new file mode 100644 index 0000000..3789967 Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking3.png differ diff --git a/2022/tr/Days/Images/Day23_Networking4.png b/2022/tr/Days/Images/Day23_Networking4.png new file mode 100644 index 0000000..2fe9383 Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking4.png differ diff --git a/2022/tr/Days/Images/Day23_Networking5.png b/2022/tr/Days/Images/Day23_Networking5.png new file mode 100644 index 0000000..a99798d Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking5.png differ diff --git a/2022/tr/Days/Images/Day23_Networking6.png b/2022/tr/Days/Images/Day23_Networking6.png new file mode 100644 index 0000000..1805e3c Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking6.png differ diff --git a/2022/tr/Days/Images/Day23_Networking7.png b/2022/tr/Days/Images/Day23_Networking7.png new file mode 100644 index 0000000..6487f6d Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking7.png differ diff --git a/2022/tr/Days/Images/Day23_Networking8.png b/2022/tr/Days/Images/Day23_Networking8.png new file mode 100644 index 0000000..6352444 Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking8.png differ diff --git a/2022/tr/Days/Images/Day23_Networking9.png b/2022/tr/Days/Images/Day23_Networking9.png new file mode 100644 index 0000000..51ea557 Binary files /dev/null and b/2022/tr/Days/Images/Day23_Networking9.png differ diff --git a/2022/tr/Days/Images/Day25_Networking1.png b/2022/tr/Days/Images/Day25_Networking1.png new file mode 100644 index 0000000..623dddf Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking1.png differ diff --git a/2022/tr/Days/Images/Day25_Networking10.png b/2022/tr/Days/Images/Day25_Networking10.png new file mode 100644 index 0000000..d5a4481 Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking10.png differ diff --git a/2022/tr/Days/Images/Day25_Networking11.png b/2022/tr/Days/Images/Day25_Networking11.png new file mode 100644 index 0000000..2b2c1ee Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking11.png differ diff --git a/2022/tr/Days/Images/Day25_Networking12.png b/2022/tr/Days/Images/Day25_Networking12.png new file mode 100644 index 0000000..ad4d0ef Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking12.png differ diff --git a/2022/tr/Days/Images/Day25_Networking2.png b/2022/tr/Days/Images/Day25_Networking2.png new file mode 100644 index 0000000..61d7921 Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking2.png differ diff --git a/2022/tr/Days/Images/Day25_Networking3.png b/2022/tr/Days/Images/Day25_Networking3.png new file mode 100644 index 0000000..6ec2cf8 Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking3.png differ diff --git a/2022/tr/Days/Images/Day25_Networking4.png b/2022/tr/Days/Images/Day25_Networking4.png new file mode 100644 index 0000000..ab32b5b Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking4.png differ diff --git a/2022/tr/Days/Images/Day25_Networking5.png b/2022/tr/Days/Images/Day25_Networking5.png new file mode 100644 index 0000000..5663e41 Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking5.png differ diff --git a/2022/tr/Days/Images/Day25_Networking6.png b/2022/tr/Days/Images/Day25_Networking6.png new file mode 100644 index 0000000..590bbb2 Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking6.png differ diff --git a/2022/tr/Days/Images/Day25_Networking7.png b/2022/tr/Days/Images/Day25_Networking7.png new file mode 100644 index 0000000..c66f1bc Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking7.png differ diff --git a/2022/tr/Days/Images/Day25_Networking8.png b/2022/tr/Days/Images/Day25_Networking8.png new file mode 100644 index 0000000..0829cce Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking8.png differ diff --git a/2022/tr/Days/Images/Day25_Networking9.png b/2022/tr/Days/Images/Day25_Networking9.png new file mode 100644 index 0000000..650cfcb Binary files /dev/null and b/2022/tr/Days/Images/Day25_Networking9.png differ diff --git a/2022/tr/Days/Images/Day26_Networking1.png b/2022/tr/Days/Images/Day26_Networking1.png new file mode 100644 index 0000000..9ad8d5d Binary files /dev/null and b/2022/tr/Days/Images/Day26_Networking1.png differ diff --git a/2022/tr/Days/Images/Day26_Networking2.png b/2022/tr/Days/Images/Day26_Networking2.png new file mode 100644 index 0000000..990448a Binary files /dev/null and b/2022/tr/Days/Images/Day26_Networking2.png differ diff --git a/2022/tr/Days/Images/Day26_Networking3.png b/2022/tr/Days/Images/Day26_Networking3.png new file mode 100644 index 0000000..ad84dc3 Binary files /dev/null and b/2022/tr/Days/Images/Day26_Networking3.png differ diff --git a/2022/tr/Days/Images/Day26_Networking4.png b/2022/tr/Days/Images/Day26_Networking4.png new file mode 100644 index 0000000..48aed1b Binary files /dev/null and b/2022/tr/Days/Images/Day26_Networking4.png differ diff --git a/2022/tr/Days/Images/Day26_Networking5.png b/2022/tr/Days/Images/Day26_Networking5.png new file mode 100644 index 0000000..1bfa17d Binary files /dev/null and b/2022/tr/Days/Images/Day26_Networking5.png differ diff --git a/2022/tr/Days/Images/Day26_Networking6.png b/2022/tr/Days/Images/Day26_Networking6.png new file mode 100644 index 0000000..785c19f Binary files /dev/null and b/2022/tr/Days/Images/Day26_Networking6.png differ diff --git a/2022/tr/Days/Images/Day26_Networking7.png b/2022/tr/Days/Images/Day26_Networking7.png new file mode 100644 index 0000000..117582a Binary files /dev/null and b/2022/tr/Days/Images/Day26_Networking7.png differ diff --git a/2022/tr/Days/Images/Day26_Networking8.png b/2022/tr/Days/Images/Day26_Networking8.png new file mode 100644 index 0000000..73209de Binary files /dev/null and b/2022/tr/Days/Images/Day26_Networking8.png differ diff --git a/2022/tr/Days/Images/Day27_Networking1.png b/2022/tr/Days/Images/Day27_Networking1.png new file mode 100644 index 0000000..dc69ce9 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking1.png differ diff --git a/2022/tr/Days/Images/Day27_Networking10.png b/2022/tr/Days/Images/Day27_Networking10.png new file mode 100644 index 0000000..a47e806 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking10.png differ diff --git a/2022/tr/Days/Images/Day27_Networking2.png b/2022/tr/Days/Images/Day27_Networking2.png new file mode 100644 index 0000000..10c2802 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking2.png differ diff --git a/2022/tr/Days/Images/Day27_Networking3.png b/2022/tr/Days/Images/Day27_Networking3.png new file mode 100644 index 0000000..12e4504 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking3.png differ diff --git a/2022/tr/Days/Images/Day27_Networking4.png b/2022/tr/Days/Images/Day27_Networking4.png new file mode 100644 index 0000000..1c6e510 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking4.png differ diff --git a/2022/tr/Days/Images/Day27_Networking5.png b/2022/tr/Days/Images/Day27_Networking5.png new file mode 100644 index 0000000..d970586 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking5.png differ diff --git a/2022/tr/Days/Images/Day27_Networking6.png b/2022/tr/Days/Images/Day27_Networking6.png new file mode 100644 index 0000000..781a242 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking6.png differ diff --git a/2022/tr/Days/Images/Day27_Networking7.png b/2022/tr/Days/Images/Day27_Networking7.png new file mode 100644 index 0000000..80b0a72 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking7.png differ diff --git a/2022/tr/Days/Images/Day27_Networking8.png b/2022/tr/Days/Images/Day27_Networking8.png new file mode 100644 index 0000000..bc655c3 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking8.png differ diff --git a/2022/tr/Days/Images/Day27_Networking9.png b/2022/tr/Days/Images/Day27_Networking9.png new file mode 100644 index 0000000..3a6be76 Binary files /dev/null and b/2022/tr/Days/Images/Day27_Networking9.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud1.png b/2022/tr/Days/Images/Day28_Cloud1.png new file mode 100644 index 0000000..9e72b37 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud1.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud10.png b/2022/tr/Days/Images/Day28_Cloud10.png new file mode 100644 index 0000000..9d480d8 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud10.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud2.png b/2022/tr/Days/Images/Day28_Cloud2.png new file mode 100644 index 0000000..77cd907 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud2.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud3.png b/2022/tr/Days/Images/Day28_Cloud3.png new file mode 100644 index 0000000..0192c13 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud3.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud4.png b/2022/tr/Days/Images/Day28_Cloud4.png new file mode 100644 index 0000000..0d25ee8 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud4.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud5.png b/2022/tr/Days/Images/Day28_Cloud5.png new file mode 100644 index 0000000..a2f0499 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud5.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud6.png b/2022/tr/Days/Images/Day28_Cloud6.png new file mode 100644 index 0000000..d58dca6 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud6.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud7.png b/2022/tr/Days/Images/Day28_Cloud7.png new file mode 100644 index 0000000..6f075a0 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud7.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud8.png b/2022/tr/Days/Images/Day28_Cloud8.png new file mode 100644 index 0000000..cb7ebf3 Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud8.png differ diff --git a/2022/tr/Days/Images/Day28_Cloud9.png b/2022/tr/Days/Images/Day28_Cloud9.png new file mode 100644 index 0000000..dd513de Binary files /dev/null and b/2022/tr/Days/Images/Day28_Cloud9.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud1.png b/2022/tr/Days/Images/Day29_Cloud1.png new file mode 100644 index 0000000..e7888ff Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud1.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud10.png b/2022/tr/Days/Images/Day29_Cloud10.png new file mode 100644 index 0000000..940637c Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud10.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud11.png b/2022/tr/Days/Images/Day29_Cloud11.png new file mode 100644 index 0000000..6b2269e Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud11.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud2.png b/2022/tr/Days/Images/Day29_Cloud2.png new file mode 100644 index 0000000..0b73654 Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud2.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud3.png b/2022/tr/Days/Images/Day29_Cloud3.png new file mode 100644 index 0000000..4ecc297 Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud3.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud4.png b/2022/tr/Days/Images/Day29_Cloud4.png new file mode 100644 index 0000000..1e6c3e1 Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud4.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud5.png b/2022/tr/Days/Images/Day29_Cloud5.png new file mode 100644 index 0000000..9b7f810 Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud5.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud6.png b/2022/tr/Days/Images/Day29_Cloud6.png new file mode 100644 index 0000000..9990e5c Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud6.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud7.png b/2022/tr/Days/Images/Day29_Cloud7.png new file mode 100644 index 0000000..a30eb53 Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud7.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud8.png b/2022/tr/Days/Images/Day29_Cloud8.png new file mode 100644 index 0000000..fb6dd89 Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud8.png differ diff --git a/2022/tr/Days/Images/Day29_Cloud9.png b/2022/tr/Days/Images/Day29_Cloud9.png new file mode 100644 index 0000000..1cf3aea Binary files /dev/null and b/2022/tr/Days/Images/Day29_Cloud9.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud1.png b/2022/tr/Days/Images/Day30_Cloud1.png new file mode 100644 index 0000000..7ef9648 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud1.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud10.png b/2022/tr/Days/Images/Day30_Cloud10.png new file mode 100644 index 0000000..e731e7b Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud10.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud11.png b/2022/tr/Days/Images/Day30_Cloud11.png new file mode 100644 index 0000000..c298ac3 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud11.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud12.png b/2022/tr/Days/Images/Day30_Cloud12.png new file mode 100644 index 0000000..0486683 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud12.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud13.png b/2022/tr/Days/Images/Day30_Cloud13.png new file mode 100644 index 0000000..2152b0a Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud13.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud14.png b/2022/tr/Days/Images/Day30_Cloud14.png new file mode 100644 index 0000000..fb2ad61 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud14.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud15.png b/2022/tr/Days/Images/Day30_Cloud15.png new file mode 100644 index 0000000..dac8f85 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud15.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud16.png b/2022/tr/Days/Images/Day30_Cloud16.png new file mode 100644 index 0000000..ed03a01 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud16.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud17.png b/2022/tr/Days/Images/Day30_Cloud17.png new file mode 100644 index 0000000..d6fd1ab Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud17.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud2.png b/2022/tr/Days/Images/Day30_Cloud2.png new file mode 100644 index 0000000..1274f65 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud2.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud3.png b/2022/tr/Days/Images/Day30_Cloud3.png new file mode 100644 index 0000000..5c8b047 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud3.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud4.png b/2022/tr/Days/Images/Day30_Cloud4.png new file mode 100644 index 0000000..8334340 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud4.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud5.png b/2022/tr/Days/Images/Day30_Cloud5.png new file mode 100644 index 0000000..8ea976b Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud5.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud6.png b/2022/tr/Days/Images/Day30_Cloud6.png new file mode 100644 index 0000000..b84d492 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud6.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud7.png b/2022/tr/Days/Images/Day30_Cloud7.png new file mode 100644 index 0000000..e93176d Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud7.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud8.png b/2022/tr/Days/Images/Day30_Cloud8.png new file mode 100644 index 0000000..21e8660 Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud8.png differ diff --git a/2022/tr/Days/Images/Day30_Cloud9.png b/2022/tr/Days/Images/Day30_Cloud9.png new file mode 100644 index 0000000..47da47f Binary files /dev/null and b/2022/tr/Days/Images/Day30_Cloud9.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud1.png b/2022/tr/Days/Images/Day32_Cloud1.png new file mode 100644 index 0000000..358cf60 Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud1.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud10.png b/2022/tr/Days/Images/Day32_Cloud10.png new file mode 100644 index 0000000..cb4f7e0 Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud10.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud2.png b/2022/tr/Days/Images/Day32_Cloud2.png new file mode 100644 index 0000000..40a2deb Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud2.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud3.png b/2022/tr/Days/Images/Day32_Cloud3.png new file mode 100644 index 0000000..8544d42 Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud3.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud4.png b/2022/tr/Days/Images/Day32_Cloud4.png new file mode 100644 index 0000000..00df52c Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud4.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud5.png b/2022/tr/Days/Images/Day32_Cloud5.png new file mode 100644 index 0000000..f0663e5 Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud5.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud6.png b/2022/tr/Days/Images/Day32_Cloud6.png new file mode 100644 index 0000000..c580273 Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud6.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud7.png b/2022/tr/Days/Images/Day32_Cloud7.png new file mode 100644 index 0000000..a01decd Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud7.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud8.png b/2022/tr/Days/Images/Day32_Cloud8.png new file mode 100644 index 0000000..868a14d Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud8.png differ diff --git a/2022/tr/Days/Images/Day32_Cloud9.png b/2022/tr/Days/Images/Day32_Cloud9.png new file mode 100644 index 0000000..1b8bea6 Binary files /dev/null and b/2022/tr/Days/Images/Day32_Cloud9.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud1.png b/2022/tr/Days/Images/Day33_Cloud1.png new file mode 100644 index 0000000..f246a95 Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud1.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud10.png b/2022/tr/Days/Images/Day33_Cloud10.png new file mode 100644 index 0000000..7f466ed Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud10.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud2.png b/2022/tr/Days/Images/Day33_Cloud2.png new file mode 100644 index 0000000..561c445 Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud2.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud3.png b/2022/tr/Days/Images/Day33_Cloud3.png new file mode 100644 index 0000000..570f998 Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud3.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud4.png b/2022/tr/Days/Images/Day33_Cloud4.png new file mode 100644 index 0000000..079dae5 Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud4.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud5.png b/2022/tr/Days/Images/Day33_Cloud5.png new file mode 100644 index 0000000..84ff63c Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud5.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud6.png b/2022/tr/Days/Images/Day33_Cloud6.png new file mode 100644 index 0000000..35d0e6c Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud6.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud7.png b/2022/tr/Days/Images/Day33_Cloud7.png new file mode 100644 index 0000000..c5fe6d2 Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud7.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud8.png b/2022/tr/Days/Images/Day33_Cloud8.png new file mode 100644 index 0000000..3d7a718 Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud8.png differ diff --git a/2022/tr/Days/Images/Day33_Cloud9.png b/2022/tr/Days/Images/Day33_Cloud9.png new file mode 100644 index 0000000..6289553 Binary files /dev/null and b/2022/tr/Days/Images/Day33_Cloud9.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud1.png b/2022/tr/Days/Images/Day34_Cloud1.png new file mode 100644 index 0000000..44f5488 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud1.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud10.png b/2022/tr/Days/Images/Day34_Cloud10.png new file mode 100644 index 0000000..7dd9794 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud10.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud11.png b/2022/tr/Days/Images/Day34_Cloud11.png new file mode 100644 index 0000000..40ecccf Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud11.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud12.png b/2022/tr/Days/Images/Day34_Cloud12.png new file mode 100644 index 0000000..c8bf697 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud12.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud13.png b/2022/tr/Days/Images/Day34_Cloud13.png new file mode 100644 index 0000000..38259bf Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud13.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud14.png b/2022/tr/Days/Images/Day34_Cloud14.png new file mode 100644 index 0000000..0b89b4e Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud14.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud15.png b/2022/tr/Days/Images/Day34_Cloud15.png new file mode 100644 index 0000000..a2a4c61 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud15.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud16.png b/2022/tr/Days/Images/Day34_Cloud16.png new file mode 100644 index 0000000..41c39b9 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud16.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud17.png b/2022/tr/Days/Images/Day34_Cloud17.png new file mode 100644 index 0000000..9576665 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud17.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud18.png b/2022/tr/Days/Images/Day34_Cloud18.png new file mode 100644 index 0000000..0ee30dd Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud18.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud19.png b/2022/tr/Days/Images/Day34_Cloud19.png new file mode 100644 index 0000000..0a1f83f Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud19.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud2.png b/2022/tr/Days/Images/Day34_Cloud2.png new file mode 100644 index 0000000..4d72d5e Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud2.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud20.png b/2022/tr/Days/Images/Day34_Cloud20.png new file mode 100644 index 0000000..a8a3880 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud20.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud21.png b/2022/tr/Days/Images/Day34_Cloud21.png new file mode 100644 index 0000000..dbcd416 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud21.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud22.png b/2022/tr/Days/Images/Day34_Cloud22.png new file mode 100644 index 0000000..8dba20d Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud22.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud23.png b/2022/tr/Days/Images/Day34_Cloud23.png new file mode 100644 index 0000000..e94b5b9 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud23.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud24.png b/2022/tr/Days/Images/Day34_Cloud24.png new file mode 100644 index 0000000..8598856 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud24.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud25.png b/2022/tr/Days/Images/Day34_Cloud25.png new file mode 100644 index 0000000..0f05ef4 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud25.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud26.png b/2022/tr/Days/Images/Day34_Cloud26.png new file mode 100644 index 0000000..13c51a6 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud26.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud27.png b/2022/tr/Days/Images/Day34_Cloud27.png new file mode 100644 index 0000000..a0b4191 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud27.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud28.png b/2022/tr/Days/Images/Day34_Cloud28.png new file mode 100644 index 0000000..ce87573 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud28.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud29.png b/2022/tr/Days/Images/Day34_Cloud29.png new file mode 100644 index 0000000..bf92aa2 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud29.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud3.png b/2022/tr/Days/Images/Day34_Cloud3.png new file mode 100644 index 0000000..c62f1df Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud3.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud30.png b/2022/tr/Days/Images/Day34_Cloud30.png new file mode 100644 index 0000000..fd8fd54 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud30.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud31.png b/2022/tr/Days/Images/Day34_Cloud31.png new file mode 100644 index 0000000..1254816 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud31.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud32.png b/2022/tr/Days/Images/Day34_Cloud32.png new file mode 100644 index 0000000..5173df1 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud32.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud33.png b/2022/tr/Days/Images/Day34_Cloud33.png new file mode 100644 index 0000000..80db7c7 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud33.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud34.png b/2022/tr/Days/Images/Day34_Cloud34.png new file mode 100644 index 0000000..61fdcc3 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud34.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud35.png b/2022/tr/Days/Images/Day34_Cloud35.png new file mode 100644 index 0000000..986fc23 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud35.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud36.png b/2022/tr/Days/Images/Day34_Cloud36.png new file mode 100644 index 0000000..575fca1 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud36.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud4.png b/2022/tr/Days/Images/Day34_Cloud4.png new file mode 100644 index 0000000..fbccbc5 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud4.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud5.png b/2022/tr/Days/Images/Day34_Cloud5.png new file mode 100644 index 0000000..da4a3b2 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud5.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud6.png b/2022/tr/Days/Images/Day34_Cloud6.png new file mode 100644 index 0000000..fff595e Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud6.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud7.png b/2022/tr/Days/Images/Day34_Cloud7.png new file mode 100644 index 0000000..af4b727 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud7.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud8.png b/2022/tr/Days/Images/Day34_Cloud8.png new file mode 100644 index 0000000..83a4174 Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud8.png differ diff --git a/2022/tr/Days/Images/Day34_Cloud9.png b/2022/tr/Days/Images/Day34_Cloud9.png new file mode 100644 index 0000000..443cdff Binary files /dev/null and b/2022/tr/Days/Images/Day34_Cloud9.png differ diff --git a/2022/tr/Days/Images/Day35_Git1.png b/2022/tr/Days/Images/Day35_Git1.png new file mode 100644 index 0000000..2f072de Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git1.png differ diff --git a/2022/tr/Days/Images/Day35_Git10.png b/2022/tr/Days/Images/Day35_Git10.png new file mode 100644 index 0000000..64d7cae Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git10.png differ diff --git a/2022/tr/Days/Images/Day35_Git11.png b/2022/tr/Days/Images/Day35_Git11.png new file mode 100644 index 0000000..fadd55e Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git11.png differ diff --git a/2022/tr/Days/Images/Day35_Git12.png b/2022/tr/Days/Images/Day35_Git12.png new file mode 100644 index 0000000..3689469 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git12.png differ diff --git a/2022/tr/Days/Images/Day35_Git13.png b/2022/tr/Days/Images/Day35_Git13.png new file mode 100644 index 0000000..393df8c Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git13.png differ diff --git a/2022/tr/Days/Images/Day35_Git14.png b/2022/tr/Days/Images/Day35_Git14.png new file mode 100644 index 0000000..36d817b Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git14.png differ diff --git a/2022/tr/Days/Images/Day35_Git15.png b/2022/tr/Days/Images/Day35_Git15.png new file mode 100644 index 0000000..d444753 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git15.png differ diff --git a/2022/tr/Days/Images/Day35_Git16.png b/2022/tr/Days/Images/Day35_Git16.png new file mode 100644 index 0000000..82b8953 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git16.png differ diff --git a/2022/tr/Days/Images/Day35_Git17.png b/2022/tr/Days/Images/Day35_Git17.png new file mode 100644 index 0000000..1dd7014 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git17.png differ diff --git a/2022/tr/Days/Images/Day35_Git18.png b/2022/tr/Days/Images/Day35_Git18.png new file mode 100644 index 0000000..f9eac6f Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git18.png differ diff --git a/2022/tr/Days/Images/Day35_Git2.png b/2022/tr/Days/Images/Day35_Git2.png new file mode 100644 index 0000000..95bbef2 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git2.png differ diff --git a/2022/tr/Days/Images/Day35_Git3.png b/2022/tr/Days/Images/Day35_Git3.png new file mode 100644 index 0000000..0023d26 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git3.png differ diff --git a/2022/tr/Days/Images/Day35_Git4.png b/2022/tr/Days/Images/Day35_Git4.png new file mode 100644 index 0000000..e4b085f Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git4.png differ diff --git a/2022/tr/Days/Images/Day35_Git5.png b/2022/tr/Days/Images/Day35_Git5.png new file mode 100644 index 0000000..9cd14c8 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git5.png differ diff --git a/2022/tr/Days/Images/Day35_Git6.png b/2022/tr/Days/Images/Day35_Git6.png new file mode 100644 index 0000000..8e11961 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git6.png differ diff --git a/2022/tr/Days/Images/Day35_Git7.png b/2022/tr/Days/Images/Day35_Git7.png new file mode 100644 index 0000000..e271e13 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git7.png differ diff --git a/2022/tr/Days/Images/Day35_Git8.png b/2022/tr/Days/Images/Day35_Git8.png new file mode 100644 index 0000000..972f66f Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git8.png differ diff --git a/2022/tr/Days/Images/Day35_Git9.png b/2022/tr/Days/Images/Day35_Git9.png new file mode 100644 index 0000000..009f357 Binary files /dev/null and b/2022/tr/Days/Images/Day35_Git9.png differ diff --git a/2022/tr/Days/Images/Day36_Git1.png b/2022/tr/Days/Images/Day36_Git1.png new file mode 100644 index 0000000..ca4eecf Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git1.png differ diff --git a/2022/tr/Days/Images/Day36_Git10.png b/2022/tr/Days/Images/Day36_Git10.png new file mode 100644 index 0000000..23a4044 Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git10.png differ diff --git a/2022/tr/Days/Images/Day36_Git11.png b/2022/tr/Days/Images/Day36_Git11.png new file mode 100644 index 0000000..4244a49 Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git11.png differ diff --git a/2022/tr/Days/Images/Day36_Git12.png b/2022/tr/Days/Images/Day36_Git12.png new file mode 100644 index 0000000..ffdc0bf Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git12.png differ diff --git a/2022/tr/Days/Images/Day36_Git13.png b/2022/tr/Days/Images/Day36_Git13.png new file mode 100644 index 0000000..27ac17e Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git13.png differ diff --git a/2022/tr/Days/Images/Day36_Git14.png b/2022/tr/Days/Images/Day36_Git14.png new file mode 100644 index 0000000..27ac17e Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git14.png differ diff --git a/2022/tr/Days/Images/Day36_Git15.png b/2022/tr/Days/Images/Day36_Git15.png new file mode 100644 index 0000000..a94ea77 Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git15.png differ diff --git a/2022/tr/Days/Images/Day36_Git16.png b/2022/tr/Days/Images/Day36_Git16.png new file mode 100644 index 0000000..eac6b25 Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git16.png differ diff --git a/2022/tr/Days/Images/Day36_Git2.png b/2022/tr/Days/Images/Day36_Git2.png new file mode 100644 index 0000000..88683db Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git2.png differ diff --git a/2022/tr/Days/Images/Day36_Git3.png b/2022/tr/Days/Images/Day36_Git3.png new file mode 100644 index 0000000..23952b2 Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git3.png differ diff --git a/2022/tr/Days/Images/Day36_Git4.png b/2022/tr/Days/Images/Day36_Git4.png new file mode 100644 index 0000000..55520a8 Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git4.png differ diff --git a/2022/tr/Days/Images/Day36_Git5.png b/2022/tr/Days/Images/Day36_Git5.png new file mode 100644 index 0000000..045842c Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git5.png differ diff --git a/2022/tr/Days/Images/Day36_Git6.png b/2022/tr/Days/Images/Day36_Git6.png new file mode 100644 index 0000000..d7a946b Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git6.png differ diff --git a/2022/tr/Days/Images/Day36_Git7.png b/2022/tr/Days/Images/Day36_Git7.png new file mode 100644 index 0000000..247ed38 Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git7.png differ diff --git a/2022/tr/Days/Images/Day36_Git8.png b/2022/tr/Days/Images/Day36_Git8.png new file mode 100644 index 0000000..c899563 Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git8.png differ diff --git a/2022/tr/Days/Images/Day36_Git9.png b/2022/tr/Days/Images/Day36_Git9.png new file mode 100644 index 0000000..e98f25a Binary files /dev/null and b/2022/tr/Days/Images/Day36_Git9.png differ diff --git a/2022/tr/Days/Images/Day37_Git1.png b/2022/tr/Days/Images/Day37_Git1.png new file mode 100644 index 0000000..b56fa13 Binary files /dev/null and b/2022/tr/Days/Images/Day37_Git1.png differ diff --git a/2022/tr/Days/Images/Day37_Git2.png b/2022/tr/Days/Images/Day37_Git2.png new file mode 100644 index 0000000..40c0a33 Binary files /dev/null and b/2022/tr/Days/Images/Day37_Git2.png differ diff --git a/2022/tr/Days/Images/Day37_Git3.png b/2022/tr/Days/Images/Day37_Git3.png new file mode 100644 index 0000000..d658dbb Binary files /dev/null and b/2022/tr/Days/Images/Day37_Git3.png differ diff --git a/2022/tr/Days/Images/Day38_Git1.png b/2022/tr/Days/Images/Day38_Git1.png new file mode 100644 index 0000000..179a56c Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git1.png differ diff --git a/2022/tr/Days/Images/Day38_Git10.png b/2022/tr/Days/Images/Day38_Git10.png new file mode 100644 index 0000000..283dbd9 Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git10.png differ diff --git a/2022/tr/Days/Images/Day38_Git11.png b/2022/tr/Days/Images/Day38_Git11.png new file mode 100644 index 0000000..1734adb Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git11.png differ diff --git a/2022/tr/Days/Images/Day38_Git12.png b/2022/tr/Days/Images/Day38_Git12.png new file mode 100644 index 0000000..087861e Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git12.png differ diff --git a/2022/tr/Days/Images/Day38_Git13.png b/2022/tr/Days/Images/Day38_Git13.png new file mode 100644 index 0000000..25a38c2 Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git13.png differ diff --git a/2022/tr/Days/Images/Day38_Git14.png b/2022/tr/Days/Images/Day38_Git14.png new file mode 100644 index 0000000..00d3bf1 Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git14.png differ diff --git a/2022/tr/Days/Images/Day38_Git15.png b/2022/tr/Days/Images/Day38_Git15.png new file mode 100644 index 0000000..8cac77d Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git15.png differ diff --git a/2022/tr/Days/Images/Day38_Git16.png b/2022/tr/Days/Images/Day38_Git16.png new file mode 100644 index 0000000..961d082 Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git16.png differ diff --git a/2022/tr/Days/Images/Day38_Git2.png b/2022/tr/Days/Images/Day38_Git2.png new file mode 100644 index 0000000..3d15271 Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git2.png differ diff --git a/2022/tr/Days/Images/Day38_Git3.png b/2022/tr/Days/Images/Day38_Git3.png new file mode 100644 index 0000000..29b4ec3 Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git3.png differ diff --git a/2022/tr/Days/Images/Day38_Git4.png b/2022/tr/Days/Images/Day38_Git4.png new file mode 100644 index 0000000..8fcc3bc Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git4.png differ diff --git a/2022/tr/Days/Images/Day38_Git5.png b/2022/tr/Days/Images/Day38_Git5.png new file mode 100644 index 0000000..f58a435 Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git5.png differ diff --git a/2022/tr/Days/Images/Day38_Git6.png b/2022/tr/Days/Images/Day38_Git6.png new file mode 100644 index 0000000..8cf2a5b Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git6.png differ diff --git a/2022/tr/Days/Images/Day38_Git7.png b/2022/tr/Days/Images/Day38_Git7.png new file mode 100644 index 0000000..b588c46 Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git7.png differ diff --git a/2022/tr/Days/Images/Day38_Git8.png b/2022/tr/Days/Images/Day38_Git8.png new file mode 100644 index 0000000..f06deec Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git8.png differ diff --git a/2022/tr/Days/Images/Day38_Git9.png b/2022/tr/Days/Images/Day38_Git9.png new file mode 100644 index 0000000..6acc77c Binary files /dev/null and b/2022/tr/Days/Images/Day38_Git9.png differ diff --git a/2022/tr/Days/Images/Day39_Git1.png b/2022/tr/Days/Images/Day39_Git1.png new file mode 100644 index 0000000..070f1cd Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git1.png differ diff --git a/2022/tr/Days/Images/Day39_Git10.png b/2022/tr/Days/Images/Day39_Git10.png new file mode 100644 index 0000000..d294c28 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git10.png differ diff --git a/2022/tr/Days/Images/Day39_Git11.png b/2022/tr/Days/Images/Day39_Git11.png new file mode 100644 index 0000000..4011b5b Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git11.png differ diff --git a/2022/tr/Days/Images/Day39_Git12.png b/2022/tr/Days/Images/Day39_Git12.png new file mode 100644 index 0000000..d5988aa Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git12.png differ diff --git a/2022/tr/Days/Images/Day39_Git13.png b/2022/tr/Days/Images/Day39_Git13.png new file mode 100644 index 0000000..30f2daa Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git13.png differ diff --git a/2022/tr/Days/Images/Day39_Git14.png b/2022/tr/Days/Images/Day39_Git14.png new file mode 100644 index 0000000..f043b59 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git14.png differ diff --git a/2022/tr/Days/Images/Day39_Git15.png b/2022/tr/Days/Images/Day39_Git15.png new file mode 100644 index 0000000..81a1260 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git15.png differ diff --git a/2022/tr/Days/Images/Day39_Git16.png b/2022/tr/Days/Images/Day39_Git16.png new file mode 100644 index 0000000..5c7378c Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git16.png differ diff --git a/2022/tr/Days/Images/Day39_Git17.png b/2022/tr/Days/Images/Day39_Git17.png new file mode 100644 index 0000000..639edff Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git17.png differ diff --git a/2022/tr/Days/Images/Day39_Git18.png b/2022/tr/Days/Images/Day39_Git18.png new file mode 100644 index 0000000..ce81059 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git18.png differ diff --git a/2022/tr/Days/Images/Day39_Git19.png b/2022/tr/Days/Images/Day39_Git19.png new file mode 100644 index 0000000..2c2d09d Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git19.png differ diff --git a/2022/tr/Days/Images/Day39_Git2.png b/2022/tr/Days/Images/Day39_Git2.png new file mode 100644 index 0000000..35abe32 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git2.png differ diff --git a/2022/tr/Days/Images/Day39_Git20.png b/2022/tr/Days/Images/Day39_Git20.png new file mode 100644 index 0000000..f3c5cb8 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git20.png differ diff --git a/2022/tr/Days/Images/Day39_Git21.png b/2022/tr/Days/Images/Day39_Git21.png new file mode 100644 index 0000000..d00e853 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git21.png differ diff --git a/2022/tr/Days/Images/Day39_Git22.png b/2022/tr/Days/Images/Day39_Git22.png new file mode 100644 index 0000000..69405b2 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git22.png differ diff --git a/2022/tr/Days/Images/Day39_Git23.png b/2022/tr/Days/Images/Day39_Git23.png new file mode 100644 index 0000000..d33c0a4 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git23.png differ diff --git a/2022/tr/Days/Images/Day39_Git24.png b/2022/tr/Days/Images/Day39_Git24.png new file mode 100644 index 0000000..125849a Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git24.png differ diff --git a/2022/tr/Days/Images/Day39_Git25.png b/2022/tr/Days/Images/Day39_Git25.png new file mode 100644 index 0000000..1da0e0a Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git25.png differ diff --git a/2022/tr/Days/Images/Day39_Git26.png b/2022/tr/Days/Images/Day39_Git26.png new file mode 100644 index 0000000..a284de4 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git26.png differ diff --git a/2022/tr/Days/Images/Day39_Git27.png b/2022/tr/Days/Images/Day39_Git27.png new file mode 100644 index 0000000..b00350d Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git27.png differ diff --git a/2022/tr/Days/Images/Day39_Git28.png b/2022/tr/Days/Images/Day39_Git28.png new file mode 100644 index 0000000..3d9f992 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git28.png differ diff --git a/2022/tr/Days/Images/Day39_Git29.png b/2022/tr/Days/Images/Day39_Git29.png new file mode 100644 index 0000000..2156a4c Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git29.png differ diff --git a/2022/tr/Days/Images/Day39_Git3.png b/2022/tr/Days/Images/Day39_Git3.png new file mode 100644 index 0000000..985ed14 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git3.png differ diff --git a/2022/tr/Days/Images/Day39_Git30.png b/2022/tr/Days/Images/Day39_Git30.png new file mode 100644 index 0000000..2314666 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git30.png differ diff --git a/2022/tr/Days/Images/Day39_Git4.png b/2022/tr/Days/Images/Day39_Git4.png new file mode 100644 index 0000000..7c70eba Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git4.png differ diff --git a/2022/tr/Days/Images/Day39_Git5.png b/2022/tr/Days/Images/Day39_Git5.png new file mode 100644 index 0000000..2356b10 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git5.png differ diff --git a/2022/tr/Days/Images/Day39_Git6.png b/2022/tr/Days/Images/Day39_Git6.png new file mode 100644 index 0000000..7395e16 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git6.png differ diff --git a/2022/tr/Days/Images/Day39_Git7.png b/2022/tr/Days/Images/Day39_Git7.png new file mode 100644 index 0000000..332e813 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git7.png differ diff --git a/2022/tr/Days/Images/Day39_Git8.png b/2022/tr/Days/Images/Day39_Git8.png new file mode 100644 index 0000000..5d12022 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git8.png differ diff --git a/2022/tr/Days/Images/Day39_Git9.png b/2022/tr/Days/Images/Day39_Git9.png new file mode 100644 index 0000000..1184422 Binary files /dev/null and b/2022/tr/Days/Images/Day39_Git9.png differ diff --git a/2022/tr/Days/Images/Day40_Git1.png b/2022/tr/Days/Images/Day40_Git1.png new file mode 100644 index 0000000..244e83f Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git1.png differ diff --git a/2022/tr/Days/Images/Day40_Git10.png b/2022/tr/Days/Images/Day40_Git10.png new file mode 100644 index 0000000..000da9d Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git10.png differ diff --git a/2022/tr/Days/Images/Day40_Git11.png b/2022/tr/Days/Images/Day40_Git11.png new file mode 100644 index 0000000..d1b1e9f Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git11.png differ diff --git a/2022/tr/Days/Images/Day40_Git12.png b/2022/tr/Days/Images/Day40_Git12.png new file mode 100644 index 0000000..586f5fd Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git12.png differ diff --git a/2022/tr/Days/Images/Day40_Git13.png b/2022/tr/Days/Images/Day40_Git13.png new file mode 100644 index 0000000..d6a0edc Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git13.png differ diff --git a/2022/tr/Days/Images/Day40_Git14.png b/2022/tr/Days/Images/Day40_Git14.png new file mode 100644 index 0000000..3afec65 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git14.png differ diff --git a/2022/tr/Days/Images/Day40_Git15.png b/2022/tr/Days/Images/Day40_Git15.png new file mode 100644 index 0000000..b10cefd Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git15.png differ diff --git a/2022/tr/Days/Images/Day40_Git16.png b/2022/tr/Days/Images/Day40_Git16.png new file mode 100644 index 0000000..5d5d172 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git16.png differ diff --git a/2022/tr/Days/Images/Day40_Git17.png b/2022/tr/Days/Images/Day40_Git17.png new file mode 100644 index 0000000..d478e5a Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git17.png differ diff --git a/2022/tr/Days/Images/Day40_Git18.png b/2022/tr/Days/Images/Day40_Git18.png new file mode 100644 index 0000000..20f24c0 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git18.png differ diff --git a/2022/tr/Days/Images/Day40_Git19.png b/2022/tr/Days/Images/Day40_Git19.png new file mode 100644 index 0000000..03e0a43 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git19.png differ diff --git a/2022/tr/Days/Images/Day40_Git2.png b/2022/tr/Days/Images/Day40_Git2.png new file mode 100644 index 0000000..70b6bc2 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git2.png differ diff --git a/2022/tr/Days/Images/Day40_Git20.png b/2022/tr/Days/Images/Day40_Git20.png new file mode 100644 index 0000000..edeb2a1 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git20.png differ diff --git a/2022/tr/Days/Images/Day40_Git21.png b/2022/tr/Days/Images/Day40_Git21.png new file mode 100644 index 0000000..832241e Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git21.png differ diff --git a/2022/tr/Days/Images/Day40_Git22.png b/2022/tr/Days/Images/Day40_Git22.png new file mode 100644 index 0000000..43425b9 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git22.png differ diff --git a/2022/tr/Days/Images/Day40_Git23.png b/2022/tr/Days/Images/Day40_Git23.png new file mode 100644 index 0000000..581582a Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git23.png differ diff --git a/2022/tr/Days/Images/Day40_Git24.png b/2022/tr/Days/Images/Day40_Git24.png new file mode 100644 index 0000000..f565bbc Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git24.png differ diff --git a/2022/tr/Days/Images/Day40_Git25.png b/2022/tr/Days/Images/Day40_Git25.png new file mode 100644 index 0000000..a9fb7e4 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git25.png differ diff --git a/2022/tr/Days/Images/Day40_Git26.png b/2022/tr/Days/Images/Day40_Git26.png new file mode 100644 index 0000000..26341bc Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git26.png differ diff --git a/2022/tr/Days/Images/Day40_Git27.png b/2022/tr/Days/Images/Day40_Git27.png new file mode 100644 index 0000000..2f1488a Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git27.png differ diff --git a/2022/tr/Days/Images/Day40_Git28.png b/2022/tr/Days/Images/Day40_Git28.png new file mode 100644 index 0000000..c20e5de Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git28.png differ diff --git a/2022/tr/Days/Images/Day40_Git29.png b/2022/tr/Days/Images/Day40_Git29.png new file mode 100644 index 0000000..1cd6361 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git29.png differ diff --git a/2022/tr/Days/Images/Day40_Git3.png b/2022/tr/Days/Images/Day40_Git3.png new file mode 100644 index 0000000..fb5cd97 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git3.png differ diff --git a/2022/tr/Days/Images/Day40_Git4.png b/2022/tr/Days/Images/Day40_Git4.png new file mode 100644 index 0000000..b4929f4 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git4.png differ diff --git a/2022/tr/Days/Images/Day40_Git5.png b/2022/tr/Days/Images/Day40_Git5.png new file mode 100644 index 0000000..29644b1 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git5.png differ diff --git a/2022/tr/Days/Images/Day40_Git6.png b/2022/tr/Days/Images/Day40_Git6.png new file mode 100644 index 0000000..57f1548 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git6.png differ diff --git a/2022/tr/Days/Images/Day40_Git7.png b/2022/tr/Days/Images/Day40_Git7.png new file mode 100644 index 0000000..ef3f25d Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git7.png differ diff --git a/2022/tr/Days/Images/Day40_Git8.png b/2022/tr/Days/Images/Day40_Git8.png new file mode 100644 index 0000000..0307f97 Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git8.png differ diff --git a/2022/tr/Days/Images/Day40_Git9.png b/2022/tr/Days/Images/Day40_Git9.png new file mode 100644 index 0000000..96522ae Binary files /dev/null and b/2022/tr/Days/Images/Day40_Git9.png differ diff --git a/2022/tr/Days/Images/Day41_Git1.png b/2022/tr/Days/Images/Day41_Git1.png new file mode 100644 index 0000000..0990499 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git1.png differ diff --git a/2022/tr/Days/Images/Day41_Git10.png b/2022/tr/Days/Images/Day41_Git10.png new file mode 100644 index 0000000..8267e56 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git10.png differ diff --git a/2022/tr/Days/Images/Day41_Git11.png b/2022/tr/Days/Images/Day41_Git11.png new file mode 100644 index 0000000..a3e1a53 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git11.png differ diff --git a/2022/tr/Days/Images/Day41_Git12.png b/2022/tr/Days/Images/Day41_Git12.png new file mode 100644 index 0000000..977dc45 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git12.png differ diff --git a/2022/tr/Days/Images/Day41_Git13.png b/2022/tr/Days/Images/Day41_Git13.png new file mode 100644 index 0000000..92cccb4 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git13.png differ diff --git a/2022/tr/Days/Images/Day41_Git14.png b/2022/tr/Days/Images/Day41_Git14.png new file mode 100644 index 0000000..bbd9bea Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git14.png differ diff --git a/2022/tr/Days/Images/Day41_Git15.png b/2022/tr/Days/Images/Day41_Git15.png new file mode 100644 index 0000000..08fa3a9 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git15.png differ diff --git a/2022/tr/Days/Images/Day41_Git16.png b/2022/tr/Days/Images/Day41_Git16.png new file mode 100644 index 0000000..41b0c79 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git16.png differ diff --git a/2022/tr/Days/Images/Day41_Git2.png b/2022/tr/Days/Images/Day41_Git2.png new file mode 100644 index 0000000..09c581d Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git2.png differ diff --git a/2022/tr/Days/Images/Day41_Git3.png b/2022/tr/Days/Images/Day41_Git3.png new file mode 100644 index 0000000..d583a52 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git3.png differ diff --git a/2022/tr/Days/Images/Day41_Git4.png b/2022/tr/Days/Images/Day41_Git4.png new file mode 100644 index 0000000..29480c2 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git4.png differ diff --git a/2022/tr/Days/Images/Day41_Git5.png b/2022/tr/Days/Images/Day41_Git5.png new file mode 100644 index 0000000..3623dbf Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git5.png differ diff --git a/2022/tr/Days/Images/Day41_Git6.png b/2022/tr/Days/Images/Day41_Git6.png new file mode 100644 index 0000000..3fadf52 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git6.png differ diff --git a/2022/tr/Days/Images/Day41_Git7.png b/2022/tr/Days/Images/Day41_Git7.png new file mode 100644 index 0000000..adabbb3 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git7.png differ diff --git a/2022/tr/Days/Images/Day41_Git8.png b/2022/tr/Days/Images/Day41_Git8.png new file mode 100644 index 0000000..8339db6 Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git8.png differ diff --git a/2022/tr/Days/Images/Day41_Git9.png b/2022/tr/Days/Images/Day41_Git9.png new file mode 100644 index 0000000..f99ffaf Binary files /dev/null and b/2022/tr/Days/Images/Day41_Git9.png differ diff --git a/2022/tr/Days/Images/Day42_Containers1.png b/2022/tr/Days/Images/Day42_Containers1.png new file mode 100644 index 0000000..37bd9d0 Binary files /dev/null and b/2022/tr/Days/Images/Day42_Containers1.png differ diff --git a/2022/tr/Days/Images/Day42_Containers2.png b/2022/tr/Days/Images/Day42_Containers2.png new file mode 100644 index 0000000..4d28ff7 Binary files /dev/null and b/2022/tr/Days/Images/Day42_Containers2.png differ diff --git a/2022/tr/Days/Images/Day42_Containers3.png b/2022/tr/Days/Images/Day42_Containers3.png new file mode 100644 index 0000000..5c103ae Binary files /dev/null and b/2022/tr/Days/Images/Day42_Containers3.png differ diff --git a/2022/tr/Days/Images/Day42_Containers4.png b/2022/tr/Days/Images/Day42_Containers4.png new file mode 100644 index 0000000..358d6ad Binary files /dev/null and b/2022/tr/Days/Images/Day42_Containers4.png differ diff --git a/2022/tr/Days/Images/Day42_Containers5.png b/2022/tr/Days/Images/Day42_Containers5.png new file mode 100644 index 0000000..ba25207 Binary files /dev/null and b/2022/tr/Days/Images/Day42_Containers5.png differ diff --git a/2022/tr/Days/Images/Day42_Containers6.png b/2022/tr/Days/Images/Day42_Containers6.png new file mode 100644 index 0000000..49f1e97 Binary files /dev/null and b/2022/tr/Days/Images/Day42_Containers6.png differ diff --git a/2022/tr/Days/Images/Day42_Containers7.png b/2022/tr/Days/Images/Day42_Containers7.png new file mode 100644 index 0000000..d7de2b5 Binary files /dev/null and b/2022/tr/Days/Images/Day42_Containers7.png differ diff --git a/2022/tr/Days/Images/Day43_Containers1.png b/2022/tr/Days/Images/Day43_Containers1.png new file mode 100644 index 0000000..d1a6109 Binary files /dev/null and b/2022/tr/Days/Images/Day43_Containers1.png differ diff --git a/2022/tr/Days/Images/Day44_Containers1.png b/2022/tr/Days/Images/Day44_Containers1.png new file mode 100644 index 0000000..3f6ba73 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers1.png differ diff --git a/2022/tr/Days/Images/Day44_Containers10.png b/2022/tr/Days/Images/Day44_Containers10.png new file mode 100644 index 0000000..afebf4b Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers10.png differ diff --git a/2022/tr/Days/Images/Day44_Containers11.png b/2022/tr/Days/Images/Day44_Containers11.png new file mode 100644 index 0000000..32a2feb Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers11.png differ diff --git a/2022/tr/Days/Images/Day44_Containers12.png b/2022/tr/Days/Images/Day44_Containers12.png new file mode 100644 index 0000000..9bbb02f Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers12.png differ diff --git a/2022/tr/Days/Images/Day44_Containers13.png b/2022/tr/Days/Images/Day44_Containers13.png new file mode 100644 index 0000000..5fdf42e Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers13.png differ diff --git a/2022/tr/Days/Images/Day44_Containers14.png b/2022/tr/Days/Images/Day44_Containers14.png new file mode 100644 index 0000000..9d02de0 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers14.png differ diff --git a/2022/tr/Days/Images/Day44_Containers15.png b/2022/tr/Days/Images/Day44_Containers15.png new file mode 100644 index 0000000..d5d0714 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers15.png differ diff --git a/2022/tr/Days/Images/Day44_Containers16.png b/2022/tr/Days/Images/Day44_Containers16.png new file mode 100644 index 0000000..3c9c93f Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers16.png differ diff --git a/2022/tr/Days/Images/Day44_Containers17.png b/2022/tr/Days/Images/Day44_Containers17.png new file mode 100644 index 0000000..4d67d00 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers17.png differ diff --git a/2022/tr/Days/Images/Day44_Containers18.png b/2022/tr/Days/Images/Day44_Containers18.png new file mode 100644 index 0000000..6654d5e Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers18.png differ diff --git a/2022/tr/Days/Images/Day44_Containers19.png b/2022/tr/Days/Images/Day44_Containers19.png new file mode 100644 index 0000000..02d74d4 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers19.png differ diff --git a/2022/tr/Days/Images/Day44_Containers2.png b/2022/tr/Days/Images/Day44_Containers2.png new file mode 100644 index 0000000..588d4db Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers2.png differ diff --git a/2022/tr/Days/Images/Day44_Containers20.png b/2022/tr/Days/Images/Day44_Containers20.png new file mode 100644 index 0000000..0aa4740 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers20.png differ diff --git a/2022/tr/Days/Images/Day44_Containers21.png b/2022/tr/Days/Images/Day44_Containers21.png new file mode 100644 index 0000000..e5947e6 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers21.png differ diff --git a/2022/tr/Days/Images/Day44_Containers22.png b/2022/tr/Days/Images/Day44_Containers22.png new file mode 100644 index 0000000..df7678f Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers22.png differ diff --git a/2022/tr/Days/Images/Day44_Containers23.png b/2022/tr/Days/Images/Day44_Containers23.png new file mode 100644 index 0000000..924af2c Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers23.png differ diff --git a/2022/tr/Days/Images/Day44_Containers24.png b/2022/tr/Days/Images/Day44_Containers24.png new file mode 100644 index 0000000..16c5ba5 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers24.png differ diff --git a/2022/tr/Days/Images/Day44_Containers3.png b/2022/tr/Days/Images/Day44_Containers3.png new file mode 100644 index 0000000..451abd2 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers3.png differ diff --git a/2022/tr/Days/Images/Day44_Containers4.png b/2022/tr/Days/Images/Day44_Containers4.png new file mode 100644 index 0000000..55b9a50 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers4.png differ diff --git a/2022/tr/Days/Images/Day44_Containers5.png b/2022/tr/Days/Images/Day44_Containers5.png new file mode 100644 index 0000000..f6fedc6 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers5.png differ diff --git a/2022/tr/Days/Images/Day44_Containers6.png b/2022/tr/Days/Images/Day44_Containers6.png new file mode 100644 index 0000000..077d0fe Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers6.png differ diff --git a/2022/tr/Days/Images/Day44_Containers7.png b/2022/tr/Days/Images/Day44_Containers7.png new file mode 100644 index 0000000..b3f61d6 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers7.png differ diff --git a/2022/tr/Days/Images/Day44_Containers8.png b/2022/tr/Days/Images/Day44_Containers8.png new file mode 100644 index 0000000..3ee700a Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers8.png differ diff --git a/2022/tr/Days/Images/Day44_Containers9.png b/2022/tr/Days/Images/Day44_Containers9.png new file mode 100644 index 0000000..4762f34 Binary files /dev/null and b/2022/tr/Days/Images/Day44_Containers9.png differ diff --git a/2022/tr/Days/Images/Day45_Containers1.png b/2022/tr/Days/Images/Day45_Containers1.png new file mode 100644 index 0000000..4667e00 Binary files /dev/null and b/2022/tr/Days/Images/Day45_Containers1.png differ diff --git a/2022/tr/Days/Images/Day45_Containers2.png b/2022/tr/Days/Images/Day45_Containers2.png new file mode 100644 index 0000000..b5bd6c8 Binary files /dev/null and b/2022/tr/Days/Images/Day45_Containers2.png differ diff --git a/2022/tr/Days/Images/Day45_Containers3.png b/2022/tr/Days/Images/Day45_Containers3.png new file mode 100644 index 0000000..18171ce Binary files /dev/null and b/2022/tr/Days/Images/Day45_Containers3.png differ diff --git a/2022/tr/Days/Images/Day45_Containers4.png b/2022/tr/Days/Images/Day45_Containers4.png new file mode 100644 index 0000000..2ff4762 Binary files /dev/null and b/2022/tr/Days/Images/Day45_Containers4.png differ diff --git a/2022/tr/Days/Images/Day45_Containers5.png b/2022/tr/Days/Images/Day45_Containers5.png new file mode 100644 index 0000000..35e6307 Binary files /dev/null and b/2022/tr/Days/Images/Day45_Containers5.png differ diff --git a/2022/tr/Days/Images/Day45_Containers6.png b/2022/tr/Days/Images/Day45_Containers6.png new file mode 100644 index 0000000..10f4a5b Binary files /dev/null and b/2022/tr/Days/Images/Day45_Containers6.png differ diff --git a/2022/tr/Days/Images/Day45_Containers7.png b/2022/tr/Days/Images/Day45_Containers7.png new file mode 100644 index 0000000..9f433a2 Binary files /dev/null and b/2022/tr/Days/Images/Day45_Containers7.png differ diff --git a/2022/tr/Days/Images/Day45_Containers8.png b/2022/tr/Days/Images/Day45_Containers8.png new file mode 100644 index 0000000..5a92d6d Binary files /dev/null and b/2022/tr/Days/Images/Day45_Containers8.png differ diff --git a/2022/tr/Days/Images/Day46_Containers1.png b/2022/tr/Days/Images/Day46_Containers1.png new file mode 100644 index 0000000..c364872 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers1.png differ diff --git a/2022/tr/Days/Images/Day46_Containers10.png b/2022/tr/Days/Images/Day46_Containers10.png new file mode 100644 index 0000000..201ff3b Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers10.png differ diff --git a/2022/tr/Days/Images/Day46_Containers11.png b/2022/tr/Days/Images/Day46_Containers11.png new file mode 100644 index 0000000..9381cca Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers11.png differ diff --git a/2022/tr/Days/Images/Day46_Containers12.png b/2022/tr/Days/Images/Day46_Containers12.png new file mode 100644 index 0000000..7c73bb6 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers12.png differ diff --git a/2022/tr/Days/Images/Day46_Containers13.png b/2022/tr/Days/Images/Day46_Containers13.png new file mode 100644 index 0000000..d5edeb1 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers13.png differ diff --git a/2022/tr/Days/Images/Day46_Containers14.png b/2022/tr/Days/Images/Day46_Containers14.png new file mode 100644 index 0000000..48a471f Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers14.png differ diff --git a/2022/tr/Days/Images/Day46_Containers15.png b/2022/tr/Days/Images/Day46_Containers15.png new file mode 100644 index 0000000..3773c6b Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers15.png differ diff --git a/2022/tr/Days/Images/Day46_Containers16.png b/2022/tr/Days/Images/Day46_Containers16.png new file mode 100644 index 0000000..c117807 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers16.png differ diff --git a/2022/tr/Days/Images/Day46_Containers17.png b/2022/tr/Days/Images/Day46_Containers17.png new file mode 100644 index 0000000..126fda2 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers17.png differ diff --git a/2022/tr/Days/Images/Day46_Containers2.png b/2022/tr/Days/Images/Day46_Containers2.png new file mode 100644 index 0000000..2d1c168 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers2.png differ diff --git a/2022/tr/Days/Images/Day46_Containers3.png b/2022/tr/Days/Images/Day46_Containers3.png new file mode 100644 index 0000000..a0275a0 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers3.png differ diff --git a/2022/tr/Days/Images/Day46_Containers4.png b/2022/tr/Days/Images/Day46_Containers4.png new file mode 100644 index 0000000..72b3ca5 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers4.png differ diff --git a/2022/tr/Days/Images/Day46_Containers5.png b/2022/tr/Days/Images/Day46_Containers5.png new file mode 100644 index 0000000..89486c0 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers5.png differ diff --git a/2022/tr/Days/Images/Day46_Containers6.png b/2022/tr/Days/Images/Day46_Containers6.png new file mode 100644 index 0000000..0783f7d Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers6.png differ diff --git a/2022/tr/Days/Images/Day46_Containers7.png b/2022/tr/Days/Images/Day46_Containers7.png new file mode 100644 index 0000000..9d9a786 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers7.png differ diff --git a/2022/tr/Days/Images/Day46_Containers8.png b/2022/tr/Days/Images/Day46_Containers8.png new file mode 100644 index 0000000..51d96e2 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers8.png differ diff --git a/2022/tr/Days/Images/Day46_Containers9.png b/2022/tr/Days/Images/Day46_Containers9.png new file mode 100644 index 0000000..ac36df4 Binary files /dev/null and b/2022/tr/Days/Images/Day46_Containers9.png differ diff --git a/2022/tr/Days/Images/Day47_Containers1.png b/2022/tr/Days/Images/Day47_Containers1.png new file mode 100644 index 0000000..cb1b7ee Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers1.png differ diff --git a/2022/tr/Days/Images/Day47_Containers10.png b/2022/tr/Days/Images/Day47_Containers10.png new file mode 100644 index 0000000..b0f0f7b Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers10.png differ diff --git a/2022/tr/Days/Images/Day47_Containers11.png b/2022/tr/Days/Images/Day47_Containers11.png new file mode 100644 index 0000000..72bf6d0 Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers11.png differ diff --git a/2022/tr/Days/Images/Day47_Containers2.png b/2022/tr/Days/Images/Day47_Containers2.png new file mode 100644 index 0000000..3442b85 Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers2.png differ diff --git a/2022/tr/Days/Images/Day47_Containers3.png b/2022/tr/Days/Images/Day47_Containers3.png new file mode 100644 index 0000000..ee6f639 Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers3.png differ diff --git a/2022/tr/Days/Images/Day47_Containers4.png b/2022/tr/Days/Images/Day47_Containers4.png new file mode 100644 index 0000000..d299478 Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers4.png differ diff --git a/2022/tr/Days/Images/Day47_Containers5.png b/2022/tr/Days/Images/Day47_Containers5.png new file mode 100644 index 0000000..86b630f Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers5.png differ diff --git a/2022/tr/Days/Images/Day47_Containers6.png b/2022/tr/Days/Images/Day47_Containers6.png new file mode 100644 index 0000000..f19cfa4 Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers6.png differ diff --git a/2022/tr/Days/Images/Day47_Containers7.png b/2022/tr/Days/Images/Day47_Containers7.png new file mode 100644 index 0000000..024498f Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers7.png differ diff --git a/2022/tr/Days/Images/Day47_Containers8.png b/2022/tr/Days/Images/Day47_Containers8.png new file mode 100644 index 0000000..8ed349c Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers8.png differ diff --git a/2022/tr/Days/Images/Day47_Containers9.png b/2022/tr/Days/Images/Day47_Containers9.png new file mode 100644 index 0000000..e4c47d9 Binary files /dev/null and b/2022/tr/Days/Images/Day47_Containers9.png differ diff --git a/2022/tr/Days/Images/Day48_Containers1.png b/2022/tr/Days/Images/Day48_Containers1.png new file mode 100644 index 0000000..5ebe89d Binary files /dev/null and b/2022/tr/Days/Images/Day48_Containers1.png differ diff --git a/2022/tr/Days/Images/Day48_Containers2.png b/2022/tr/Days/Images/Day48_Containers2.png new file mode 100644 index 0000000..7ea3834 Binary files /dev/null and b/2022/tr/Days/Images/Day48_Containers2.png differ diff --git a/2022/tr/Days/Images/Day48_Containers3.png b/2022/tr/Days/Images/Day48_Containers3.png new file mode 100644 index 0000000..8d579af Binary files /dev/null and b/2022/tr/Days/Images/Day48_Containers3.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes1.png b/2022/tr/Days/Images/Day49_Kubernetes1.png new file mode 100644 index 0000000..93bdd01 Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes1.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes10.png b/2022/tr/Days/Images/Day49_Kubernetes10.png new file mode 100644 index 0000000..664504b Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes10.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes11.png b/2022/tr/Days/Images/Day49_Kubernetes11.png new file mode 100644 index 0000000..b54b151 Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes11.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes12.png b/2022/tr/Days/Images/Day49_Kubernetes12.png new file mode 100644 index 0000000..1309bcd Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes12.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes2.png b/2022/tr/Days/Images/Day49_Kubernetes2.png new file mode 100644 index 0000000..0f69657 Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes2.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes3.png b/2022/tr/Days/Images/Day49_Kubernetes3.png new file mode 100644 index 0000000..780cf5d Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes3.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes4.png b/2022/tr/Days/Images/Day49_Kubernetes4.png new file mode 100644 index 0000000..3decc1e Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes4.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes5.png b/2022/tr/Days/Images/Day49_Kubernetes5.png new file mode 100644 index 0000000..be08a72 Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes5.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes6.png b/2022/tr/Days/Images/Day49_Kubernetes6.png new file mode 100644 index 0000000..a9f2050 Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes6.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes7.png b/2022/tr/Days/Images/Day49_Kubernetes7.png new file mode 100644 index 0000000..8557547 Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes7.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes8.png b/2022/tr/Days/Images/Day49_Kubernetes8.png new file mode 100644 index 0000000..8cac10a Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes8.png differ diff --git a/2022/tr/Days/Images/Day49_Kubernetes9.png b/2022/tr/Days/Images/Day49_Kubernetes9.png new file mode 100644 index 0000000..2edd8db Binary files /dev/null and b/2022/tr/Days/Images/Day49_Kubernetes9.png differ diff --git a/2022/tr/Days/Images/Day51_Kubernetes1.png b/2022/tr/Days/Images/Day51_Kubernetes1.png new file mode 100644 index 0000000..b1e5810 Binary files /dev/null and b/2022/tr/Days/Images/Day51_Kubernetes1.png differ diff --git a/2022/tr/Days/Images/Day51_Kubernetes2.png b/2022/tr/Days/Images/Day51_Kubernetes2.png new file mode 100644 index 0000000..0aff9ea Binary files /dev/null and b/2022/tr/Days/Images/Day51_Kubernetes2.png differ diff --git a/2022/tr/Days/Images/Day51_Kubernetes3.png b/2022/tr/Days/Images/Day51_Kubernetes3.png new file mode 100644 index 0000000..d971bfa Binary files /dev/null and b/2022/tr/Days/Images/Day51_Kubernetes3.png differ diff --git a/2022/tr/Days/Images/Day51_Kubernetes4.png b/2022/tr/Days/Images/Day51_Kubernetes4.png new file mode 100644 index 0000000..8fd6996 Binary files /dev/null and b/2022/tr/Days/Images/Day51_Kubernetes4.png differ diff --git a/2022/tr/Days/Images/Day51_Kubernetes5.png b/2022/tr/Days/Images/Day51_Kubernetes5.png new file mode 100644 index 0000000..8d130e3 Binary files /dev/null and b/2022/tr/Days/Images/Day51_Kubernetes5.png differ diff --git a/2022/tr/Days/Images/Day51_Kubernetes6.png b/2022/tr/Days/Images/Day51_Kubernetes6.png new file mode 100644 index 0000000..3a8d6d0 Binary files /dev/null and b/2022/tr/Days/Images/Day51_Kubernetes6.png differ diff --git a/2022/tr/Days/Images/Day51_Kubernetes7.png b/2022/tr/Days/Images/Day51_Kubernetes7.png new file mode 100644 index 0000000..62a249f Binary files /dev/null and b/2022/tr/Days/Images/Day51_Kubernetes7.png differ diff --git a/2022/tr/Days/Images/Day51_Kubernetes8.png b/2022/tr/Days/Images/Day51_Kubernetes8.png new file mode 100644 index 0000000..7d727c1 Binary files /dev/null and b/2022/tr/Days/Images/Day51_Kubernetes8.png differ diff --git a/2022/tr/Days/Images/Day52_Kubernetes1.png b/2022/tr/Days/Images/Day52_Kubernetes1.png new file mode 100644 index 0000000..3f95032 Binary files /dev/null and b/2022/tr/Days/Images/Day52_Kubernetes1.png differ diff --git a/2022/tr/Days/Images/Day52_Kubernetes2.png b/2022/tr/Days/Images/Day52_Kubernetes2.png new file mode 100644 index 0000000..9944e75 Binary files /dev/null and b/2022/tr/Days/Images/Day52_Kubernetes2.png differ diff --git a/2022/tr/Days/Images/Day52_Kubernetes3.png b/2022/tr/Days/Images/Day52_Kubernetes3.png new file mode 100644 index 0000000..fdd08ee Binary files /dev/null and b/2022/tr/Days/Images/Day52_Kubernetes3.png differ diff --git a/2022/tr/Days/Images/Day52_Kubernetes4.png b/2022/tr/Days/Images/Day52_Kubernetes4.png new file mode 100644 index 0000000..c702a52 Binary files /dev/null and b/2022/tr/Days/Images/Day52_Kubernetes4.png differ diff --git a/2022/tr/Days/Images/Day52_Kubernetes5.png b/2022/tr/Days/Images/Day52_Kubernetes5.png new file mode 100644 index 0000000..4f26509 Binary files /dev/null and b/2022/tr/Days/Images/Day52_Kubernetes5.png differ diff --git a/2022/tr/Days/Images/Day52_Kubernetes6.png b/2022/tr/Days/Images/Day52_Kubernetes6.png new file mode 100644 index 0000000..e645f06 Binary files /dev/null and b/2022/tr/Days/Images/Day52_Kubernetes6.png differ diff --git a/2022/tr/Days/Images/Day52_Kubernetes7.png b/2022/tr/Days/Images/Day52_Kubernetes7.png new file mode 100644 index 0000000..509fd55 Binary files /dev/null and b/2022/tr/Days/Images/Day52_Kubernetes7.png differ diff --git a/2022/tr/Days/Images/Day52_Kubernetes8.png b/2022/tr/Days/Images/Day52_Kubernetes8.png new file mode 100644 index 0000000..ef28850 Binary files /dev/null and b/2022/tr/Days/Images/Day52_Kubernetes8.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes1.png b/2022/tr/Days/Images/Day53_Kubernetes1.png new file mode 100644 index 0000000..0817f64 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes1.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes10.png b/2022/tr/Days/Images/Day53_Kubernetes10.png new file mode 100644 index 0000000..4bf58ed Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes10.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes11.png b/2022/tr/Days/Images/Day53_Kubernetes11.png new file mode 100644 index 0000000..f4ba01b Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes11.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes12.png b/2022/tr/Days/Images/Day53_Kubernetes12.png new file mode 100644 index 0000000..6f67dc9 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes12.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes13.png b/2022/tr/Days/Images/Day53_Kubernetes13.png new file mode 100644 index 0000000..be59720 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes13.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes14.png b/2022/tr/Days/Images/Day53_Kubernetes14.png new file mode 100644 index 0000000..b890198 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes14.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes2.png b/2022/tr/Days/Images/Day53_Kubernetes2.png new file mode 100644 index 0000000..4f8138f Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes2.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes3.png b/2022/tr/Days/Images/Day53_Kubernetes3.png new file mode 100644 index 0000000..8772077 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes3.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes4.png b/2022/tr/Days/Images/Day53_Kubernetes4.png new file mode 100644 index 0000000..9085743 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes4.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes5.png b/2022/tr/Days/Images/Day53_Kubernetes5.png new file mode 100644 index 0000000..7092c82 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes5.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes6.png b/2022/tr/Days/Images/Day53_Kubernetes6.png new file mode 100644 index 0000000..f8a5731 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes6.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes7.png b/2022/tr/Days/Images/Day53_Kubernetes7.png new file mode 100644 index 0000000..9dd643a Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes7.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes8.png b/2022/tr/Days/Images/Day53_Kubernetes8.png new file mode 100644 index 0000000..3f33324 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes8.png differ diff --git a/2022/tr/Days/Images/Day53_Kubernetes9.png b/2022/tr/Days/Images/Day53_Kubernetes9.png new file mode 100644 index 0000000..420c763 Binary files /dev/null and b/2022/tr/Days/Images/Day53_Kubernetes9.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes1.png b/2022/tr/Days/Images/Day54_Kubernetes1.png new file mode 100644 index 0000000..00c3843 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes1.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes10.png b/2022/tr/Days/Images/Day54_Kubernetes10.png new file mode 100644 index 0000000..b0015df Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes10.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes11.png b/2022/tr/Days/Images/Day54_Kubernetes11.png new file mode 100644 index 0000000..add9d68 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes11.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes12.png b/2022/tr/Days/Images/Day54_Kubernetes12.png new file mode 100644 index 0000000..841d99a Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes12.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes13.png b/2022/tr/Days/Images/Day54_Kubernetes13.png new file mode 100644 index 0000000..b4c1b37 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes13.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes14.png b/2022/tr/Days/Images/Day54_Kubernetes14.png new file mode 100644 index 0000000..597685a Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes14.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes15.png b/2022/tr/Days/Images/Day54_Kubernetes15.png new file mode 100644 index 0000000..7807a3b Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes15.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes16.png b/2022/tr/Days/Images/Day54_Kubernetes16.png new file mode 100644 index 0000000..35779d9 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes16.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes17.png b/2022/tr/Days/Images/Day54_Kubernetes17.png new file mode 100644 index 0000000..08f8f20 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes17.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes2.png b/2022/tr/Days/Images/Day54_Kubernetes2.png new file mode 100644 index 0000000..93bfbf4 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes2.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes3.png b/2022/tr/Days/Images/Day54_Kubernetes3.png new file mode 100644 index 0000000..fffa9d2 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes3.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes4.png b/2022/tr/Days/Images/Day54_Kubernetes4.png new file mode 100644 index 0000000..fa09386 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes4.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes5.png b/2022/tr/Days/Images/Day54_Kubernetes5.png new file mode 100644 index 0000000..d161cdc Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes5.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes6.png b/2022/tr/Days/Images/Day54_Kubernetes6.png new file mode 100644 index 0000000..5d18172 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes6.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes7.png b/2022/tr/Days/Images/Day54_Kubernetes7.png new file mode 100644 index 0000000..ed5e8da Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes7.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes8.png b/2022/tr/Days/Images/Day54_Kubernetes8.png new file mode 100644 index 0000000..51dc0f7 Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes8.png differ diff --git a/2022/tr/Days/Images/Day54_Kubernetes9.png b/2022/tr/Days/Images/Day54_Kubernetes9.png new file mode 100644 index 0000000..ad59e8c Binary files /dev/null and b/2022/tr/Days/Images/Day54_Kubernetes9.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes1.png b/2022/tr/Days/Images/Day55_Kubernetes1.png new file mode 100644 index 0000000..33d2efd Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes1.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes10.png b/2022/tr/Days/Images/Day55_Kubernetes10.png new file mode 100644 index 0000000..d288af9 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes10.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes11.png b/2022/tr/Days/Images/Day55_Kubernetes11.png new file mode 100644 index 0000000..c8efb84 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes11.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes12.png b/2022/tr/Days/Images/Day55_Kubernetes12.png new file mode 100644 index 0000000..47d950c Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes12.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes13.png b/2022/tr/Days/Images/Day55_Kubernetes13.png new file mode 100644 index 0000000..e0092c1 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes13.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes14.png b/2022/tr/Days/Images/Day55_Kubernetes14.png new file mode 100644 index 0000000..0c0bc68 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes14.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes15.png b/2022/tr/Days/Images/Day55_Kubernetes15.png new file mode 100644 index 0000000..4baaee5 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes15.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes16.png b/2022/tr/Days/Images/Day55_Kubernetes16.png new file mode 100644 index 0000000..3fd0124 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes16.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes2.png b/2022/tr/Days/Images/Day55_Kubernetes2.png new file mode 100644 index 0000000..099a2c5 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes2.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes3.png b/2022/tr/Days/Images/Day55_Kubernetes3.png new file mode 100644 index 0000000..bab2cac Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes3.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes4.png b/2022/tr/Days/Images/Day55_Kubernetes4.png new file mode 100644 index 0000000..f90a5db Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes4.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes5.png b/2022/tr/Days/Images/Day55_Kubernetes5.png new file mode 100644 index 0000000..975f466 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes5.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes6.png b/2022/tr/Days/Images/Day55_Kubernetes6.png new file mode 100644 index 0000000..53d0b00 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes6.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes7.png b/2022/tr/Days/Images/Day55_Kubernetes7.png new file mode 100644 index 0000000..19ae76f Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes7.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes8.png b/2022/tr/Days/Images/Day55_Kubernetes8.png new file mode 100644 index 0000000..df4fad6 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes8.png differ diff --git a/2022/tr/Days/Images/Day55_Kubernetes9.png b/2022/tr/Days/Images/Day55_Kubernetes9.png new file mode 100644 index 0000000..2406ba1 Binary files /dev/null and b/2022/tr/Days/Images/Day55_Kubernetes9.png differ diff --git a/2022/tr/Days/Images/Day57_IAC1.png b/2022/tr/Days/Images/Day57_IAC1.png new file mode 100644 index 0000000..effc515 Binary files /dev/null and b/2022/tr/Days/Images/Day57_IAC1.png differ diff --git a/2022/tr/Days/Images/Day57_IAC2.png b/2022/tr/Days/Images/Day57_IAC2.png new file mode 100644 index 0000000..63bc4c6 Binary files /dev/null and b/2022/tr/Days/Images/Day57_IAC2.png differ diff --git a/2022/tr/Days/Images/Day57_IAC3.png b/2022/tr/Days/Images/Day57_IAC3.png new file mode 100644 index 0000000..cdf8b54 Binary files /dev/null and b/2022/tr/Days/Images/Day57_IAC3.png differ diff --git a/2022/tr/Days/Images/Day58_IAC1.png b/2022/tr/Days/Images/Day58_IAC1.png new file mode 100644 index 0000000..72fbe78 Binary files /dev/null and b/2022/tr/Days/Images/Day58_IAC1.png differ diff --git a/2022/tr/Days/Images/Day58_IAC2.png b/2022/tr/Days/Images/Day58_IAC2.png new file mode 100644 index 0000000..108dc5d Binary files /dev/null and b/2022/tr/Days/Images/Day58_IAC2.png differ diff --git a/2022/tr/Days/Images/Day58_IAC3.png b/2022/tr/Days/Images/Day58_IAC3.png new file mode 100644 index 0000000..c5120ba Binary files /dev/null and b/2022/tr/Days/Images/Day58_IAC3.png differ diff --git a/2022/tr/Days/Images/Day58_IAC4.png b/2022/tr/Days/Images/Day58_IAC4.png new file mode 100644 index 0000000..cf619a7 Binary files /dev/null and b/2022/tr/Days/Images/Day58_IAC4.png differ diff --git a/2022/tr/Days/Images/Day59_IAC1.png b/2022/tr/Days/Images/Day59_IAC1.png new file mode 100644 index 0000000..dced9fd Binary files /dev/null and b/2022/tr/Days/Images/Day59_IAC1.png differ diff --git a/2022/tr/Days/Images/Day59_IAC2.png b/2022/tr/Days/Images/Day59_IAC2.png new file mode 100644 index 0000000..dea8aa7 Binary files /dev/null and b/2022/tr/Days/Images/Day59_IAC2.png differ diff --git a/2022/tr/Days/Images/Day59_IAC3.png b/2022/tr/Days/Images/Day59_IAC3.png new file mode 100644 index 0000000..8c703be Binary files /dev/null and b/2022/tr/Days/Images/Day59_IAC3.png differ diff --git a/2022/tr/Days/Images/Day59_IAC4.png b/2022/tr/Days/Images/Day59_IAC4.png new file mode 100644 index 0000000..a4a06c3 Binary files /dev/null and b/2022/tr/Days/Images/Day59_IAC4.png differ diff --git a/2022/tr/Days/Images/Day59_IAC5.png b/2022/tr/Days/Images/Day59_IAC5.png new file mode 100644 index 0000000..44c0324 Binary files /dev/null and b/2022/tr/Days/Images/Day59_IAC5.png differ diff --git a/2022/tr/Days/Images/Day59_IAC6.png b/2022/tr/Days/Images/Day59_IAC6.png new file mode 100644 index 0000000..fc2e068 Binary files /dev/null and b/2022/tr/Days/Images/Day59_IAC6.png differ diff --git a/2022/tr/Days/Images/Day5_DevOps8.png b/2022/tr/Days/Images/Day5_DevOps8.png new file mode 100644 index 0000000..e50100e Binary files /dev/null and b/2022/tr/Days/Images/Day5_DevOps8.png differ diff --git a/2022/tr/Days/Images/Day60_IAC1.png b/2022/tr/Days/Images/Day60_IAC1.png new file mode 100644 index 0000000..5103a09 Binary files /dev/null and b/2022/tr/Days/Images/Day60_IAC1.png differ diff --git a/2022/tr/Days/Images/Day60_IAC2.png b/2022/tr/Days/Images/Day60_IAC2.png new file mode 100644 index 0000000..3aabbf5 Binary files /dev/null and b/2022/tr/Days/Images/Day60_IAC2.png differ diff --git a/2022/tr/Days/Images/Day60_IAC3.png b/2022/tr/Days/Images/Day60_IAC3.png new file mode 100644 index 0000000..3a63814 Binary files /dev/null and b/2022/tr/Days/Images/Day60_IAC3.png differ diff --git a/2022/tr/Days/Images/Day60_IAC4.png b/2022/tr/Days/Images/Day60_IAC4.png new file mode 100644 index 0000000..061a540 Binary files /dev/null and b/2022/tr/Days/Images/Day60_IAC4.png differ diff --git a/2022/tr/Days/Images/Day60_IAC5.png b/2022/tr/Days/Images/Day60_IAC5.png new file mode 100644 index 0000000..b769eec Binary files /dev/null and b/2022/tr/Days/Images/Day60_IAC5.png differ diff --git a/2022/tr/Days/Images/Day60_IAC6.png b/2022/tr/Days/Images/Day60_IAC6.png new file mode 100644 index 0000000..b9f69ce Binary files /dev/null and b/2022/tr/Days/Images/Day60_IAC6.png differ diff --git a/2022/tr/Days/Images/Day61_IAC1.png b/2022/tr/Days/Images/Day61_IAC1.png new file mode 100644 index 0000000..6ddade0 Binary files /dev/null and b/2022/tr/Days/Images/Day61_IAC1.png differ diff --git a/2022/tr/Days/Images/Day61_IAC2.png b/2022/tr/Days/Images/Day61_IAC2.png new file mode 100644 index 0000000..24cd95a Binary files /dev/null and b/2022/tr/Days/Images/Day61_IAC2.png differ diff --git a/2022/tr/Days/Images/Day61_IAC3.png b/2022/tr/Days/Images/Day61_IAC3.png new file mode 100644 index 0000000..2f57c8e Binary files /dev/null and b/2022/tr/Days/Images/Day61_IAC3.png differ diff --git a/2022/tr/Days/Images/Day61_IAC4.png b/2022/tr/Days/Images/Day61_IAC4.png new file mode 100644 index 0000000..46308e9 Binary files /dev/null and b/2022/tr/Days/Images/Day61_IAC4.png differ diff --git a/2022/tr/Days/Images/Day61_IAC5.png b/2022/tr/Days/Images/Day61_IAC5.png new file mode 100644 index 0000000..0bbfefd Binary files /dev/null and b/2022/tr/Days/Images/Day61_IAC5.png differ diff --git a/2022/tr/Days/Images/Day63_config1.png b/2022/tr/Days/Images/Day63_config1.png new file mode 100644 index 0000000..b3c9d52 Binary files /dev/null and b/2022/tr/Days/Images/Day63_config1.png differ diff --git a/2022/tr/Days/Images/Day64_config1.png b/2022/tr/Days/Images/Day64_config1.png new file mode 100644 index 0000000..ea66b45 Binary files /dev/null and b/2022/tr/Days/Images/Day64_config1.png differ diff --git a/2022/tr/Days/Images/Day64_config2.png b/2022/tr/Days/Images/Day64_config2.png new file mode 100644 index 0000000..a885543 Binary files /dev/null and b/2022/tr/Days/Images/Day64_config2.png differ diff --git a/2022/tr/Days/Images/Day64_config3.png b/2022/tr/Days/Images/Day64_config3.png new file mode 100644 index 0000000..eb5ef8c Binary files /dev/null and b/2022/tr/Days/Images/Day64_config3.png differ diff --git a/2022/tr/Days/Images/Day64_config4.png b/2022/tr/Days/Images/Day64_config4.png new file mode 100644 index 0000000..25d3172 Binary files /dev/null and b/2022/tr/Days/Images/Day64_config4.png differ diff --git a/2022/tr/Days/Images/Day64_config5.png b/2022/tr/Days/Images/Day64_config5.png new file mode 100644 index 0000000..fe374db Binary files /dev/null and b/2022/tr/Days/Images/Day64_config5.png differ diff --git a/2022/tr/Days/Images/Day64_config6.png b/2022/tr/Days/Images/Day64_config6.png new file mode 100644 index 0000000..446a9fb Binary files /dev/null and b/2022/tr/Days/Images/Day64_config6.png differ diff --git a/2022/tr/Days/Images/Day64_config7.png b/2022/tr/Days/Images/Day64_config7.png new file mode 100644 index 0000000..0fcbc3b Binary files /dev/null and b/2022/tr/Days/Images/Day64_config7.png differ diff --git a/2022/tr/Days/Images/Day64_config8.png b/2022/tr/Days/Images/Day64_config8.png new file mode 100644 index 0000000..4e50265 Binary files /dev/null and b/2022/tr/Days/Images/Day64_config8.png differ diff --git a/2022/tr/Days/Images/Day65_config1.png b/2022/tr/Days/Images/Day65_config1.png new file mode 100644 index 0000000..82486a4 Binary files /dev/null and b/2022/tr/Days/Images/Day65_config1.png differ diff --git a/2022/tr/Days/Images/Day65_config10.png b/2022/tr/Days/Images/Day65_config10.png new file mode 100644 index 0000000..0b1150d Binary files /dev/null and b/2022/tr/Days/Images/Day65_config10.png differ diff --git a/2022/tr/Days/Images/Day65_config11.png b/2022/tr/Days/Images/Day65_config11.png new file mode 100644 index 0000000..724116e Binary files /dev/null and b/2022/tr/Days/Images/Day65_config11.png differ diff --git a/2022/tr/Days/Images/Day65_config2.png b/2022/tr/Days/Images/Day65_config2.png new file mode 100644 index 0000000..466e184 Binary files /dev/null and b/2022/tr/Days/Images/Day65_config2.png differ diff --git a/2022/tr/Days/Images/Day65_config3.png b/2022/tr/Days/Images/Day65_config3.png new file mode 100644 index 0000000..dbb316f Binary files /dev/null and b/2022/tr/Days/Images/Day65_config3.png differ diff --git a/2022/tr/Days/Images/Day65_config4.png b/2022/tr/Days/Images/Day65_config4.png new file mode 100644 index 0000000..825975c Binary files /dev/null and b/2022/tr/Days/Images/Day65_config4.png differ diff --git a/2022/tr/Days/Images/Day65_config5.png b/2022/tr/Days/Images/Day65_config5.png new file mode 100644 index 0000000..e10e9ed Binary files /dev/null and b/2022/tr/Days/Images/Day65_config5.png differ diff --git a/2022/tr/Days/Images/Day65_config6.png b/2022/tr/Days/Images/Day65_config6.png new file mode 100644 index 0000000..01b0083 Binary files /dev/null and b/2022/tr/Days/Images/Day65_config6.png differ diff --git a/2022/tr/Days/Images/Day65_config7.png b/2022/tr/Days/Images/Day65_config7.png new file mode 100644 index 0000000..e678201 Binary files /dev/null and b/2022/tr/Days/Images/Day65_config7.png differ diff --git a/2022/tr/Days/Images/Day65_config8.png b/2022/tr/Days/Images/Day65_config8.png new file mode 100644 index 0000000..2302d96 Binary files /dev/null and b/2022/tr/Days/Images/Day65_config8.png differ diff --git a/2022/tr/Days/Images/Day65_config9.png b/2022/tr/Days/Images/Day65_config9.png new file mode 100644 index 0000000..a59a9d1 Binary files /dev/null and b/2022/tr/Days/Images/Day65_config9.png differ diff --git a/2022/tr/Days/Images/Day66_config1.png b/2022/tr/Days/Images/Day66_config1.png new file mode 100644 index 0000000..ddb7566 Binary files /dev/null and b/2022/tr/Days/Images/Day66_config1.png differ diff --git a/2022/tr/Days/Images/Day66_config10.png b/2022/tr/Days/Images/Day66_config10.png new file mode 100644 index 0000000..a454d03 Binary files /dev/null and b/2022/tr/Days/Images/Day66_config10.png differ diff --git a/2022/tr/Days/Images/Day66_config2.png b/2022/tr/Days/Images/Day66_config2.png new file mode 100644 index 0000000..62f16d6 Binary files /dev/null and b/2022/tr/Days/Images/Day66_config2.png differ diff --git a/2022/tr/Days/Images/Day66_config3.png b/2022/tr/Days/Images/Day66_config3.png new file mode 100644 index 0000000..b471ef6 Binary files /dev/null and b/2022/tr/Days/Images/Day66_config3.png differ diff --git a/2022/tr/Days/Images/Day66_config4.png b/2022/tr/Days/Images/Day66_config4.png new file mode 100644 index 0000000..aa7989d Binary files /dev/null and b/2022/tr/Days/Images/Day66_config4.png differ diff --git a/2022/tr/Days/Images/Day66_config5.png b/2022/tr/Days/Images/Day66_config5.png new file mode 100644 index 0000000..020705e Binary files /dev/null and b/2022/tr/Days/Images/Day66_config5.png differ diff --git a/2022/tr/Days/Images/Day66_config6.png b/2022/tr/Days/Images/Day66_config6.png new file mode 100644 index 0000000..5a4b504 Binary files /dev/null and b/2022/tr/Days/Images/Day66_config6.png differ diff --git a/2022/tr/Days/Images/Day66_config7.png b/2022/tr/Days/Images/Day66_config7.png new file mode 100644 index 0000000..046be37 Binary files /dev/null and b/2022/tr/Days/Images/Day66_config7.png differ diff --git a/2022/tr/Days/Images/Day66_config8.png b/2022/tr/Days/Images/Day66_config8.png new file mode 100644 index 0000000..7797705 Binary files /dev/null and b/2022/tr/Days/Images/Day66_config8.png differ diff --git a/2022/tr/Days/Images/Day66_config9.png b/2022/tr/Days/Images/Day66_config9.png new file mode 100644 index 0000000..183f957 Binary files /dev/null and b/2022/tr/Days/Images/Day66_config9.png differ diff --git a/2022/tr/Days/Images/Day67_config1.png b/2022/tr/Days/Images/Day67_config1.png new file mode 100644 index 0000000..ede4ff1 Binary files /dev/null and b/2022/tr/Days/Images/Day67_config1.png differ diff --git a/2022/tr/Days/Images/Day67_config2.png b/2022/tr/Days/Images/Day67_config2.png new file mode 100644 index 0000000..6fa2518 Binary files /dev/null and b/2022/tr/Days/Images/Day67_config2.png differ diff --git a/2022/tr/Days/Images/Day67_config3.png b/2022/tr/Days/Images/Day67_config3.png new file mode 100644 index 0000000..8a6fb79 Binary files /dev/null and b/2022/tr/Days/Images/Day67_config3.png differ diff --git a/2022/tr/Days/Images/Day68_config1.png b/2022/tr/Days/Images/Day68_config1.png new file mode 100644 index 0000000..f94e61b Binary files /dev/null and b/2022/tr/Days/Images/Day68_config1.png differ diff --git a/2022/tr/Days/Images/Day68_config2.png b/2022/tr/Days/Images/Day68_config2.png new file mode 100644 index 0000000..d992765 Binary files /dev/null and b/2022/tr/Days/Images/Day68_config2.png differ diff --git a/2022/tr/Days/Images/Day68_config3.png b/2022/tr/Days/Images/Day68_config3.png new file mode 100644 index 0000000..1b37a58 Binary files /dev/null and b/2022/tr/Days/Images/Day68_config3.png differ diff --git a/2022/tr/Days/Images/Day68_config4.png b/2022/tr/Days/Images/Day68_config4.png new file mode 100644 index 0000000..5ed98a1 Binary files /dev/null and b/2022/tr/Days/Images/Day68_config4.png differ diff --git a/2022/tr/Days/Images/Day68_config5.png b/2022/tr/Days/Images/Day68_config5.png new file mode 100644 index 0000000..c434791 Binary files /dev/null and b/2022/tr/Days/Images/Day68_config5.png differ diff --git a/2022/tr/Days/Images/Day68_config6.png b/2022/tr/Days/Images/Day68_config6.png new file mode 100644 index 0000000..1c934c1 Binary files /dev/null and b/2022/tr/Days/Images/Day68_config6.png differ diff --git a/2022/tr/Days/Images/Day68_config7.png b/2022/tr/Days/Images/Day68_config7.png new file mode 100644 index 0000000..3107673 Binary files /dev/null and b/2022/tr/Days/Images/Day68_config7.png differ diff --git a/2022/tr/Days/Images/Day68_config8.png b/2022/tr/Days/Images/Day68_config8.png new file mode 100644 index 0000000..ea07336 Binary files /dev/null and b/2022/tr/Days/Images/Day68_config8.png differ diff --git a/2022/tr/Days/Images/Day68_config9.png b/2022/tr/Days/Images/Day68_config9.png new file mode 100644 index 0000000..a61b0cb Binary files /dev/null and b/2022/tr/Days/Images/Day68_config9.png differ diff --git a/2022/tr/Days/Images/Day69_config1.png b/2022/tr/Days/Images/Day69_config1.png new file mode 100644 index 0000000..3fdc8a2 Binary files /dev/null and b/2022/tr/Days/Images/Day69_config1.png differ diff --git a/2022/tr/Days/Images/Day69_config10.png b/2022/tr/Days/Images/Day69_config10.png new file mode 100644 index 0000000..1b7908e Binary files /dev/null and b/2022/tr/Days/Images/Day69_config10.png differ diff --git a/2022/tr/Days/Images/Day69_config2.png b/2022/tr/Days/Images/Day69_config2.png new file mode 100644 index 0000000..4911768 Binary files /dev/null and b/2022/tr/Days/Images/Day69_config2.png differ diff --git a/2022/tr/Days/Images/Day69_config3.png b/2022/tr/Days/Images/Day69_config3.png new file mode 100644 index 0000000..4667a3b Binary files /dev/null and b/2022/tr/Days/Images/Day69_config3.png differ diff --git a/2022/tr/Days/Images/Day69_config4.png b/2022/tr/Days/Images/Day69_config4.png new file mode 100644 index 0000000..f2f5957 Binary files /dev/null and b/2022/tr/Days/Images/Day69_config4.png differ diff --git a/2022/tr/Days/Images/Day69_config5.png b/2022/tr/Days/Images/Day69_config5.png new file mode 100644 index 0000000..af84765 Binary files /dev/null and b/2022/tr/Days/Images/Day69_config5.png differ diff --git a/2022/tr/Days/Images/Day69_config6.png b/2022/tr/Days/Images/Day69_config6.png new file mode 100644 index 0000000..4ca79ac Binary files /dev/null and b/2022/tr/Days/Images/Day69_config6.png differ diff --git a/2022/tr/Days/Images/Day69_config7.png b/2022/tr/Days/Images/Day69_config7.png new file mode 100644 index 0000000..0075c36 Binary files /dev/null and b/2022/tr/Days/Images/Day69_config7.png differ diff --git a/2022/tr/Days/Images/Day69_config8.png b/2022/tr/Days/Images/Day69_config8.png new file mode 100644 index 0000000..e9ad9c5 Binary files /dev/null and b/2022/tr/Days/Images/Day69_config8.png differ diff --git a/2022/tr/Days/Images/Day69_config9.png b/2022/tr/Days/Images/Day69_config9.png new file mode 100644 index 0000000..1f56caf Binary files /dev/null and b/2022/tr/Days/Images/Day69_config9.png differ diff --git a/2022/tr/Days/Images/Day70_CICD1.png b/2022/tr/Days/Images/Day70_CICD1.png new file mode 100644 index 0000000..8ddc900 Binary files /dev/null and b/2022/tr/Days/Images/Day70_CICD1.png differ diff --git a/2022/tr/Days/Images/Day70_CICD2.png b/2022/tr/Days/Images/Day70_CICD2.png new file mode 100644 index 0000000..c638998 Binary files /dev/null and b/2022/tr/Days/Images/Day70_CICD2.png differ diff --git a/2022/tr/Days/Images/Day70_CICD3.png b/2022/tr/Days/Images/Day70_CICD3.png new file mode 100644 index 0000000..5022bd7 Binary files /dev/null and b/2022/tr/Days/Images/Day70_CICD3.png differ diff --git a/2022/tr/Days/Images/Day70_CICD4.png b/2022/tr/Days/Images/Day70_CICD4.png new file mode 100644 index 0000000..ab818ce Binary files /dev/null and b/2022/tr/Days/Images/Day70_CICD4.png differ diff --git a/2022/tr/Days/Images/Day70_CICD5.png b/2022/tr/Days/Images/Day70_CICD5.png new file mode 100644 index 0000000..cdf2167 Binary files /dev/null and b/2022/tr/Days/Images/Day70_CICD5.png differ diff --git a/2022/tr/Days/Images/Day70_CICD6.png b/2022/tr/Days/Images/Day70_CICD6.png new file mode 100644 index 0000000..b4955be Binary files /dev/null and b/2022/tr/Days/Images/Day70_CICD6.png differ diff --git a/2022/tr/Days/Images/Day71_CICD1.png b/2022/tr/Days/Images/Day71_CICD1.png new file mode 100644 index 0000000..0b026c3 Binary files /dev/null and b/2022/tr/Days/Images/Day71_CICD1.png differ diff --git a/2022/tr/Days/Images/Day71_CICD2.png b/2022/tr/Days/Images/Day71_CICD2.png new file mode 100644 index 0000000..82a4ad0 Binary files /dev/null and b/2022/tr/Days/Images/Day71_CICD2.png differ diff --git a/2022/tr/Days/Images/Day71_CICD3.png b/2022/tr/Days/Images/Day71_CICD3.png new file mode 100644 index 0000000..8b3ec23 Binary files /dev/null and b/2022/tr/Days/Images/Day71_CICD3.png differ diff --git a/2022/tr/Days/Images/Day71_CICD4.png b/2022/tr/Days/Images/Day71_CICD4.png new file mode 100644 index 0000000..bad15fd Binary files /dev/null and b/2022/tr/Days/Images/Day71_CICD4.png differ diff --git a/2022/tr/Days/Images/Day71_CICD5.png b/2022/tr/Days/Images/Day71_CICD5.png new file mode 100644 index 0000000..b845252 Binary files /dev/null and b/2022/tr/Days/Images/Day71_CICD5.png differ diff --git a/2022/tr/Days/Images/Day72_CICD1.png b/2022/tr/Days/Images/Day72_CICD1.png new file mode 100644 index 0000000..b9df7c0 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD1.png differ diff --git a/2022/tr/Days/Images/Day72_CICD10.png b/2022/tr/Days/Images/Day72_CICD10.png new file mode 100644 index 0000000..f01d728 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD10.png differ diff --git a/2022/tr/Days/Images/Day72_CICD11.png b/2022/tr/Days/Images/Day72_CICD11.png new file mode 100644 index 0000000..459aa40 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD11.png differ diff --git a/2022/tr/Days/Images/Day72_CICD12.png b/2022/tr/Days/Images/Day72_CICD12.png new file mode 100644 index 0000000..358a7e0 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD12.png differ diff --git a/2022/tr/Days/Images/Day72_CICD13.png b/2022/tr/Days/Images/Day72_CICD13.png new file mode 100644 index 0000000..e2992c4 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD13.png differ diff --git a/2022/tr/Days/Images/Day72_CICD14.png b/2022/tr/Days/Images/Day72_CICD14.png new file mode 100644 index 0000000..99515fd Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD14.png differ diff --git a/2022/tr/Days/Images/Day72_CICD15.png b/2022/tr/Days/Images/Day72_CICD15.png new file mode 100644 index 0000000..3132a1f Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD15.png differ diff --git a/2022/tr/Days/Images/Day72_CICD16.png b/2022/tr/Days/Images/Day72_CICD16.png new file mode 100644 index 0000000..bef6f2e Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD16.png differ diff --git a/2022/tr/Days/Images/Day72_CICD17.png b/2022/tr/Days/Images/Day72_CICD17.png new file mode 100644 index 0000000..c1b716f Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD17.png differ diff --git a/2022/tr/Days/Images/Day72_CICD18.png b/2022/tr/Days/Images/Day72_CICD18.png new file mode 100644 index 0000000..9656c9b Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD18.png differ diff --git a/2022/tr/Days/Images/Day72_CICD2.png b/2022/tr/Days/Images/Day72_CICD2.png new file mode 100644 index 0000000..629c90d Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD2.png differ diff --git a/2022/tr/Days/Images/Day72_CICD3.png b/2022/tr/Days/Images/Day72_CICD3.png new file mode 100644 index 0000000..3fad279 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD3.png differ diff --git a/2022/tr/Days/Images/Day72_CICD4.png b/2022/tr/Days/Images/Day72_CICD4.png new file mode 100644 index 0000000..02ba06b Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD4.png differ diff --git a/2022/tr/Days/Images/Day72_CICD5.png b/2022/tr/Days/Images/Day72_CICD5.png new file mode 100644 index 0000000..54d593e Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD5.png differ diff --git a/2022/tr/Days/Images/Day72_CICD6.png b/2022/tr/Days/Images/Day72_CICD6.png new file mode 100644 index 0000000..10522a1 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD6.png differ diff --git a/2022/tr/Days/Images/Day72_CICD7.png b/2022/tr/Days/Images/Day72_CICD7.png new file mode 100644 index 0000000..4d79895 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD7.png differ diff --git a/2022/tr/Days/Images/Day72_CICD8.png b/2022/tr/Days/Images/Day72_CICD8.png new file mode 100644 index 0000000..e81d623 Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD8.png differ diff --git a/2022/tr/Days/Images/Day72_CICD9.png b/2022/tr/Days/Images/Day72_CICD9.png new file mode 100644 index 0000000..72ab6ce Binary files /dev/null and b/2022/tr/Days/Images/Day72_CICD9.png differ diff --git a/2022/tr/Days/Images/Day73_CICD1.png b/2022/tr/Days/Images/Day73_CICD1.png new file mode 100644 index 0000000..0729522 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD1.png differ diff --git a/2022/tr/Days/Images/Day73_CICD10.png b/2022/tr/Days/Images/Day73_CICD10.png new file mode 100644 index 0000000..51b4a92 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD10.png differ diff --git a/2022/tr/Days/Images/Day73_CICD11.png b/2022/tr/Days/Images/Day73_CICD11.png new file mode 100644 index 0000000..53791b9 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD11.png differ diff --git a/2022/tr/Days/Images/Day73_CICD12.png b/2022/tr/Days/Images/Day73_CICD12.png new file mode 100644 index 0000000..ccd6b32 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD12.png differ diff --git a/2022/tr/Days/Images/Day73_CICD13.png b/2022/tr/Days/Images/Day73_CICD13.png new file mode 100644 index 0000000..8fdf1f8 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD13.png differ diff --git a/2022/tr/Days/Images/Day73_CICD14.png b/2022/tr/Days/Images/Day73_CICD14.png new file mode 100644 index 0000000..c608d33 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD14.png differ diff --git a/2022/tr/Days/Images/Day73_CICD15.png b/2022/tr/Days/Images/Day73_CICD15.png new file mode 100644 index 0000000..ccc9199 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD15.png differ diff --git a/2022/tr/Days/Images/Day73_CICD2.png b/2022/tr/Days/Images/Day73_CICD2.png new file mode 100644 index 0000000..a4bc678 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD2.png differ diff --git a/2022/tr/Days/Images/Day73_CICD3.png b/2022/tr/Days/Images/Day73_CICD3.png new file mode 100644 index 0000000..2e60da9 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD3.png differ diff --git a/2022/tr/Days/Images/Day73_CICD4.png b/2022/tr/Days/Images/Day73_CICD4.png new file mode 100644 index 0000000..7b85813 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD4.png differ diff --git a/2022/tr/Days/Images/Day73_CICD5.png b/2022/tr/Days/Images/Day73_CICD5.png new file mode 100644 index 0000000..14fdf06 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD5.png differ diff --git a/2022/tr/Days/Images/Day73_CICD6.png b/2022/tr/Days/Images/Day73_CICD6.png new file mode 100644 index 0000000..0ccf65d Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD6.png differ diff --git a/2022/tr/Days/Images/Day73_CICD7.png b/2022/tr/Days/Images/Day73_CICD7.png new file mode 100644 index 0000000..86b93bf Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD7.png differ diff --git a/2022/tr/Days/Images/Day73_CICD8.png b/2022/tr/Days/Images/Day73_CICD8.png new file mode 100644 index 0000000..2aa2995 Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD8.png differ diff --git a/2022/tr/Days/Images/Day73_CICD9.png b/2022/tr/Days/Images/Day73_CICD9.png new file mode 100644 index 0000000..d6ab2ad Binary files /dev/null and b/2022/tr/Days/Images/Day73_CICD9.png differ diff --git a/2022/tr/Days/Images/Day74_CICD1.png b/2022/tr/Days/Images/Day74_CICD1.png new file mode 100644 index 0000000..95bd53b Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD1.png differ diff --git a/2022/tr/Days/Images/Day74_CICD10.png b/2022/tr/Days/Images/Day74_CICD10.png new file mode 100644 index 0000000..12ad8fd Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD10.png differ diff --git a/2022/tr/Days/Images/Day74_CICD11.png b/2022/tr/Days/Images/Day74_CICD11.png new file mode 100644 index 0000000..ca7bb61 Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD11.png differ diff --git a/2022/tr/Days/Images/Day74_CICD12.png b/2022/tr/Days/Images/Day74_CICD12.png new file mode 100644 index 0000000..9a10181 Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD12.png differ diff --git a/2022/tr/Days/Images/Day74_CICD2.png b/2022/tr/Days/Images/Day74_CICD2.png new file mode 100644 index 0000000..3f0641d Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD2.png differ diff --git a/2022/tr/Days/Images/Day74_CICD3.png b/2022/tr/Days/Images/Day74_CICD3.png new file mode 100644 index 0000000..ed0fb43 Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD3.png differ diff --git a/2022/tr/Days/Images/Day74_CICD4.png b/2022/tr/Days/Images/Day74_CICD4.png new file mode 100644 index 0000000..ef7ee36 Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD4.png differ diff --git a/2022/tr/Days/Images/Day74_CICD5.png b/2022/tr/Days/Images/Day74_CICD5.png new file mode 100644 index 0000000..90a3367 Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD5.png differ diff --git a/2022/tr/Days/Images/Day74_CICD6.png b/2022/tr/Days/Images/Day74_CICD6.png new file mode 100644 index 0000000..764372b Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD6.png differ diff --git a/2022/tr/Days/Images/Day74_CICD7.png b/2022/tr/Days/Images/Day74_CICD7.png new file mode 100644 index 0000000..730d41d Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD7.png differ diff --git a/2022/tr/Days/Images/Day74_CICD8.png b/2022/tr/Days/Images/Day74_CICD8.png new file mode 100644 index 0000000..890d2d6 Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD8.png differ diff --git a/2022/tr/Days/Images/Day74_CICD9.png b/2022/tr/Days/Images/Day74_CICD9.png new file mode 100644 index 0000000..59aed9d Binary files /dev/null and b/2022/tr/Days/Images/Day74_CICD9.png differ diff --git a/2022/tr/Days/Images/Day75_CICD1.png b/2022/tr/Days/Images/Day75_CICD1.png new file mode 100644 index 0000000..e7adb77 Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD1.png differ diff --git a/2022/tr/Days/Images/Day75_CICD10.png b/2022/tr/Days/Images/Day75_CICD10.png new file mode 100644 index 0000000..8bc640c Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD10.png differ diff --git a/2022/tr/Days/Images/Day75_CICD2.png b/2022/tr/Days/Images/Day75_CICD2.png new file mode 100644 index 0000000..e8eb886 Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD2.png differ diff --git a/2022/tr/Days/Images/Day75_CICD3.png b/2022/tr/Days/Images/Day75_CICD3.png new file mode 100644 index 0000000..2f9240e Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD3.png differ diff --git a/2022/tr/Days/Images/Day75_CICD4.png b/2022/tr/Days/Images/Day75_CICD4.png new file mode 100644 index 0000000..7bca29b Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD4.png differ diff --git a/2022/tr/Days/Images/Day75_CICD5.png b/2022/tr/Days/Images/Day75_CICD5.png new file mode 100644 index 0000000..0c7d70d Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD5.png differ diff --git a/2022/tr/Days/Images/Day75_CICD6.png b/2022/tr/Days/Images/Day75_CICD6.png new file mode 100644 index 0000000..51108cc Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD6.png differ diff --git a/2022/tr/Days/Images/Day75_CICD7.png b/2022/tr/Days/Images/Day75_CICD7.png new file mode 100644 index 0000000..575bcc9 Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD7.png differ diff --git a/2022/tr/Days/Images/Day75_CICD8.png b/2022/tr/Days/Images/Day75_CICD8.png new file mode 100644 index 0000000..bdcad5b Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD8.png differ diff --git a/2022/tr/Days/Images/Day75_CICD9.png b/2022/tr/Days/Images/Day75_CICD9.png new file mode 100644 index 0000000..1fd4515 Binary files /dev/null and b/2022/tr/Days/Images/Day75_CICD9.png differ diff --git a/2022/tr/Days/Images/Day76_CICD1.png b/2022/tr/Days/Images/Day76_CICD1.png new file mode 100644 index 0000000..849c681 Binary files /dev/null and b/2022/tr/Days/Images/Day76_CICD1.png differ diff --git a/2022/tr/Days/Images/Day76_CICD2.png b/2022/tr/Days/Images/Day76_CICD2.png new file mode 100644 index 0000000..e7bd4a1 Binary files /dev/null and b/2022/tr/Days/Images/Day76_CICD2.png differ diff --git a/2022/tr/Days/Images/Day76_CICD3.png b/2022/tr/Days/Images/Day76_CICD3.png new file mode 100644 index 0000000..f6af33a Binary files /dev/null and b/2022/tr/Days/Images/Day76_CICD3.png differ diff --git a/2022/tr/Days/Images/Day76_CICD4.png b/2022/tr/Days/Images/Day76_CICD4.png new file mode 100644 index 0000000..b4107ca Binary files /dev/null and b/2022/tr/Days/Images/Day76_CICD4.png differ diff --git a/2022/tr/Days/Images/Day76_CICD5.png b/2022/tr/Days/Images/Day76_CICD5.png new file mode 100644 index 0000000..e17fe3c Binary files /dev/null and b/2022/tr/Days/Images/Day76_CICD5.png differ diff --git a/2022/tr/Days/Images/Day76_CICD6.png b/2022/tr/Days/Images/Day76_CICD6.png new file mode 100644 index 0000000..f47d87b Binary files /dev/null and b/2022/tr/Days/Images/Day76_CICD6.png differ diff --git a/2022/tr/Days/Images/Day77_Monitoring1.png b/2022/tr/Days/Images/Day77_Monitoring1.png new file mode 100644 index 0000000..00f4abb Binary files /dev/null and b/2022/tr/Days/Images/Day77_Monitoring1.png differ diff --git a/2022/tr/Days/Images/Day77_Monitoring2.png b/2022/tr/Days/Images/Day77_Monitoring2.png new file mode 100644 index 0000000..c42adaf Binary files /dev/null and b/2022/tr/Days/Images/Day77_Monitoring2.png differ diff --git a/2022/tr/Days/Images/Day77_Monitoring3.png b/2022/tr/Days/Images/Day77_Monitoring3.png new file mode 100644 index 0000000..3ab8655 Binary files /dev/null and b/2022/tr/Days/Images/Day77_Monitoring3.png differ diff --git a/2022/tr/Days/Images/Day78_Monitoring1.png b/2022/tr/Days/Images/Day78_Monitoring1.png new file mode 100644 index 0000000..a2edc05 Binary files /dev/null and b/2022/tr/Days/Images/Day78_Monitoring1.png differ diff --git a/2022/tr/Days/Images/Day78_Monitoring2.png b/2022/tr/Days/Images/Day78_Monitoring2.png new file mode 100644 index 0000000..6050eb9 Binary files /dev/null and b/2022/tr/Days/Images/Day78_Monitoring2.png differ diff --git a/2022/tr/Days/Images/Day78_Monitoring3.png b/2022/tr/Days/Images/Day78_Monitoring3.png new file mode 100644 index 0000000..43b4469 Binary files /dev/null and b/2022/tr/Days/Images/Day78_Monitoring3.png differ diff --git a/2022/tr/Days/Images/Day78_Monitoring4.png b/2022/tr/Days/Images/Day78_Monitoring4.png new file mode 100644 index 0000000..dbf4101 Binary files /dev/null and b/2022/tr/Days/Images/Day78_Monitoring4.png differ diff --git a/2022/tr/Days/Images/Day78_Monitoring5.png b/2022/tr/Days/Images/Day78_Monitoring5.png new file mode 100644 index 0000000..67cb07e Binary files /dev/null and b/2022/tr/Days/Images/Day78_Monitoring5.png differ diff --git a/2022/tr/Days/Images/Day78_Monitoring6.png b/2022/tr/Days/Images/Day78_Monitoring6.png new file mode 100644 index 0000000..bf60736 Binary files /dev/null and b/2022/tr/Days/Images/Day78_Monitoring6.png differ diff --git a/2022/tr/Days/Images/Day78_Monitoring7.png b/2022/tr/Days/Images/Day78_Monitoring7.png new file mode 100644 index 0000000..b530b84 Binary files /dev/null and b/2022/tr/Days/Images/Day78_Monitoring7.png differ diff --git a/2022/tr/Days/Images/Day80_Monitoring1.png b/2022/tr/Days/Images/Day80_Monitoring1.png new file mode 100644 index 0000000..83bbb1f Binary files /dev/null and b/2022/tr/Days/Images/Day80_Monitoring1.png differ diff --git a/2022/tr/Days/Images/Day80_Monitoring2.png b/2022/tr/Days/Images/Day80_Monitoring2.png new file mode 100644 index 0000000..4ed642a Binary files /dev/null and b/2022/tr/Days/Images/Day80_Monitoring2.png differ diff --git a/2022/tr/Days/Images/Day80_Monitoring3.png b/2022/tr/Days/Images/Day80_Monitoring3.png new file mode 100644 index 0000000..4e249cd Binary files /dev/null and b/2022/tr/Days/Images/Day80_Monitoring3.png differ diff --git a/2022/tr/Days/Images/Day80_Monitoring4.png b/2022/tr/Days/Images/Day80_Monitoring4.png new file mode 100644 index 0000000..c433bbb Binary files /dev/null and b/2022/tr/Days/Images/Day80_Monitoring4.png differ diff --git a/2022/tr/Days/Images/Day80_Monitoring5.png b/2022/tr/Days/Images/Day80_Monitoring5.png new file mode 100644 index 0000000..19f35d6 Binary files /dev/null and b/2022/tr/Days/Images/Day80_Monitoring5.png differ diff --git a/2022/tr/Days/Images/Day80_Monitoring6.png b/2022/tr/Days/Images/Day80_Monitoring6.png new file mode 100644 index 0000000..62c7b4a Binary files /dev/null and b/2022/tr/Days/Images/Day80_Monitoring6.png differ diff --git a/2022/tr/Days/Images/Day80_Monitoring7.png b/2022/tr/Days/Images/Day80_Monitoring7.png new file mode 100644 index 0000000..ad7d704 Binary files /dev/null and b/2022/tr/Days/Images/Day80_Monitoring7.png differ diff --git a/2022/tr/Days/Images/Day80_Monitoring8.png b/2022/tr/Days/Images/Day80_Monitoring8.png new file mode 100644 index 0000000..4e21a81 Binary files /dev/null and b/2022/tr/Days/Images/Day80_Monitoring8.png differ diff --git a/2022/tr/Days/Images/Day81_Monitoring1.png b/2022/tr/Days/Images/Day81_Monitoring1.png new file mode 100644 index 0000000..6052478 Binary files /dev/null and b/2022/tr/Days/Images/Day81_Monitoring1.png differ diff --git a/2022/tr/Days/Images/Day81_Monitoring2.png b/2022/tr/Days/Images/Day81_Monitoring2.png new file mode 100644 index 0000000..4027da0 Binary files /dev/null and b/2022/tr/Days/Images/Day81_Monitoring2.png differ diff --git a/2022/tr/Days/Images/Day81_Monitoring3.png b/2022/tr/Days/Images/Day81_Monitoring3.png new file mode 100644 index 0000000..1f828ed Binary files /dev/null and b/2022/tr/Days/Images/Day81_Monitoring3.png differ diff --git a/2022/tr/Days/Images/Day81_Monitoring4.png b/2022/tr/Days/Images/Day81_Monitoring4.png new file mode 100644 index 0000000..6966427 Binary files /dev/null and b/2022/tr/Days/Images/Day81_Monitoring4.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring1.png b/2022/tr/Days/Images/Day82_Monitoring1.png new file mode 100644 index 0000000..f72eb89 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring1.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring10.png b/2022/tr/Days/Images/Day82_Monitoring10.png new file mode 100644 index 0000000..eee18fe Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring10.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring11.png b/2022/tr/Days/Images/Day82_Monitoring11.png new file mode 100644 index 0000000..994e649 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring11.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring12.png b/2022/tr/Days/Images/Day82_Monitoring12.png new file mode 100644 index 0000000..4b3eba4 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring12.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring13.png b/2022/tr/Days/Images/Day82_Monitoring13.png new file mode 100644 index 0000000..b2e0069 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring13.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring2.png b/2022/tr/Days/Images/Day82_Monitoring2.png new file mode 100644 index 0000000..b93b834 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring2.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring3.png b/2022/tr/Days/Images/Day82_Monitoring3.png new file mode 100644 index 0000000..78e5394 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring3.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring4.png b/2022/tr/Days/Images/Day82_Monitoring4.png new file mode 100644 index 0000000..9fabd1a Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring4.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring5.png b/2022/tr/Days/Images/Day82_Monitoring5.png new file mode 100644 index 0000000..af9b2d2 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring5.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring6.png b/2022/tr/Days/Images/Day82_Monitoring6.png new file mode 100644 index 0000000..9591c14 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring6.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring7.png b/2022/tr/Days/Images/Day82_Monitoring7.png new file mode 100644 index 0000000..7dc4b08 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring7.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring8.png b/2022/tr/Days/Images/Day82_Monitoring8.png new file mode 100644 index 0000000..e0e2856 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring8.png differ diff --git a/2022/tr/Days/Images/Day82_Monitoring9.png b/2022/tr/Days/Images/Day82_Monitoring9.png new file mode 100644 index 0000000..b75aae3 Binary files /dev/null and b/2022/tr/Days/Images/Day82_Monitoring9.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring1.png b/2022/tr/Days/Images/Day83_Monitoring1.png new file mode 100644 index 0000000..8e9f234 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring1.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring10.png b/2022/tr/Days/Images/Day83_Monitoring10.png new file mode 100644 index 0000000..3a8d582 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring10.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring11.png b/2022/tr/Days/Images/Day83_Monitoring11.png new file mode 100644 index 0000000..8e917b3 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring11.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring12.png b/2022/tr/Days/Images/Day83_Monitoring12.png new file mode 100644 index 0000000..ac271f5 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring12.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring13.png b/2022/tr/Days/Images/Day83_Monitoring13.png new file mode 100644 index 0000000..ba70006 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring13.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring14.png b/2022/tr/Days/Images/Day83_Monitoring14.png new file mode 100644 index 0000000..00d8aff Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring14.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring15.png b/2022/tr/Days/Images/Day83_Monitoring15.png new file mode 100644 index 0000000..8d1e8ef Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring15.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring16.png b/2022/tr/Days/Images/Day83_Monitoring16.png new file mode 100644 index 0000000..6c394c0 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring16.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring17.png b/2022/tr/Days/Images/Day83_Monitoring17.png new file mode 100644 index 0000000..e063faf Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring17.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring18.png b/2022/tr/Days/Images/Day83_Monitoring18.png new file mode 100644 index 0000000..2a8d4cc Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring18.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring19.png b/2022/tr/Days/Images/Day83_Monitoring19.png new file mode 100644 index 0000000..965d06e Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring19.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring2.png b/2022/tr/Days/Images/Day83_Monitoring2.png new file mode 100644 index 0000000..9faa0f1 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring2.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring20.png b/2022/tr/Days/Images/Day83_Monitoring20.png new file mode 100644 index 0000000..9fdb669 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring20.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring21.png b/2022/tr/Days/Images/Day83_Monitoring21.png new file mode 100644 index 0000000..2c959c1 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring21.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring3.png b/2022/tr/Days/Images/Day83_Monitoring3.png new file mode 100644 index 0000000..bc314ea Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring3.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring4.png b/2022/tr/Days/Images/Day83_Monitoring4.png new file mode 100644 index 0000000..cd47f0c Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring4.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring5.png b/2022/tr/Days/Images/Day83_Monitoring5.png new file mode 100644 index 0000000..bc8ddf6 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring5.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring6.png b/2022/tr/Days/Images/Day83_Monitoring6.png new file mode 100644 index 0000000..cdcc5ac Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring6.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring7.png b/2022/tr/Days/Images/Day83_Monitoring7.png new file mode 100644 index 0000000..d8cfe07 Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring7.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring8.png b/2022/tr/Days/Images/Day83_Monitoring8.png new file mode 100644 index 0000000..550db5e Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring8.png differ diff --git a/2022/tr/Days/Images/Day83_Monitoring9.png b/2022/tr/Days/Images/Day83_Monitoring9.png new file mode 100644 index 0000000..f2b611e Binary files /dev/null and b/2022/tr/Days/Images/Day83_Monitoring9.png differ diff --git a/2022/tr/Days/Images/Day84_Data1.png b/2022/tr/Days/Images/Day84_Data1.png new file mode 100644 index 0000000..78fff68 Binary files /dev/null and b/2022/tr/Days/Images/Day84_Data1.png differ diff --git a/2022/tr/Days/Images/Day85_Data1.png b/2022/tr/Days/Images/Day85_Data1.png new file mode 100644 index 0000000..f536d1a Binary files /dev/null and b/2022/tr/Days/Images/Day85_Data1.png differ diff --git a/2022/tr/Days/Images/Day85_Data2.png b/2022/tr/Days/Images/Day85_Data2.png new file mode 100644 index 0000000..00bf2d3 Binary files /dev/null and b/2022/tr/Days/Images/Day85_Data2.png differ diff --git a/2022/tr/Days/Images/Day85_Data3.png b/2022/tr/Days/Images/Day85_Data3.png new file mode 100644 index 0000000..c82d4f9 Binary files /dev/null and b/2022/tr/Days/Images/Day85_Data3.png differ diff --git a/2022/tr/Days/Images/Day85_Data4.png b/2022/tr/Days/Images/Day85_Data4.png new file mode 100644 index 0000000..6126e9a Binary files /dev/null and b/2022/tr/Days/Images/Day85_Data4.png differ diff --git a/2022/tr/Days/Images/Day86_Data1.png b/2022/tr/Days/Images/Day86_Data1.png new file mode 100644 index 0000000..1ea94bc Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data1.png differ diff --git a/2022/tr/Days/Images/Day86_Data10.png b/2022/tr/Days/Images/Day86_Data10.png new file mode 100644 index 0000000..6db351c Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data10.png differ diff --git a/2022/tr/Days/Images/Day86_Data11.png b/2022/tr/Days/Images/Day86_Data11.png new file mode 100644 index 0000000..9411904 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data11.png differ diff --git a/2022/tr/Days/Images/Day86_Data12.png b/2022/tr/Days/Images/Day86_Data12.png new file mode 100644 index 0000000..3a43ba0 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data12.png differ diff --git a/2022/tr/Days/Images/Day86_Data13.png b/2022/tr/Days/Images/Day86_Data13.png new file mode 100644 index 0000000..e102fef Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data13.png differ diff --git a/2022/tr/Days/Images/Day86_Data14.png b/2022/tr/Days/Images/Day86_Data14.png new file mode 100644 index 0000000..d08ef13 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data14.png differ diff --git a/2022/tr/Days/Images/Day86_Data15.png b/2022/tr/Days/Images/Day86_Data15.png new file mode 100644 index 0000000..0439899 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data15.png differ diff --git a/2022/tr/Days/Images/Day86_Data16.png b/2022/tr/Days/Images/Day86_Data16.png new file mode 100644 index 0000000..87d2ba9 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data16.png differ diff --git a/2022/tr/Days/Images/Day86_Data17.png b/2022/tr/Days/Images/Day86_Data17.png new file mode 100644 index 0000000..00d0d52 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data17.png differ diff --git a/2022/tr/Days/Images/Day86_Data18.png b/2022/tr/Days/Images/Day86_Data18.png new file mode 100644 index 0000000..1fb1f79 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data18.png differ diff --git a/2022/tr/Days/Images/Day86_Data19.png b/2022/tr/Days/Images/Day86_Data19.png new file mode 100644 index 0000000..595e0f7 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data19.png differ diff --git a/2022/tr/Days/Images/Day86_Data2.png b/2022/tr/Days/Images/Day86_Data2.png new file mode 100644 index 0000000..adbf582 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data2.png differ diff --git a/2022/tr/Days/Images/Day86_Data20.png b/2022/tr/Days/Images/Day86_Data20.png new file mode 100644 index 0000000..69a20a9 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data20.png differ diff --git a/2022/tr/Days/Images/Day86_Data21.png b/2022/tr/Days/Images/Day86_Data21.png new file mode 100644 index 0000000..9ffef78 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data21.png differ diff --git a/2022/tr/Days/Images/Day86_Data22.png b/2022/tr/Days/Images/Day86_Data22.png new file mode 100644 index 0000000..74cb046 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data22.png differ diff --git a/2022/tr/Days/Images/Day86_Data3.png b/2022/tr/Days/Images/Day86_Data3.png new file mode 100644 index 0000000..db38633 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data3.png differ diff --git a/2022/tr/Days/Images/Day86_Data4.png b/2022/tr/Days/Images/Day86_Data4.png new file mode 100644 index 0000000..b4f025e Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data4.png differ diff --git a/2022/tr/Days/Images/Day86_Data5.png b/2022/tr/Days/Images/Day86_Data5.png new file mode 100644 index 0000000..cb428c7 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data5.png differ diff --git a/2022/tr/Days/Images/Day86_Data6.png b/2022/tr/Days/Images/Day86_Data6.png new file mode 100644 index 0000000..fccf2c8 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data6.png differ diff --git a/2022/tr/Days/Images/Day86_Data7.png b/2022/tr/Days/Images/Day86_Data7.png new file mode 100644 index 0000000..7a44e08 Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data7.png differ diff --git a/2022/tr/Days/Images/Day86_Data8.png b/2022/tr/Days/Images/Day86_Data8.png new file mode 100644 index 0000000..57caabd Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data8.png differ diff --git a/2022/tr/Days/Images/Day86_Data9.png b/2022/tr/Days/Images/Day86_Data9.png new file mode 100644 index 0000000..e686bce Binary files /dev/null and b/2022/tr/Days/Images/Day86_Data9.png differ diff --git a/2022/tr/Days/Images/Day87_Data1.png b/2022/tr/Days/Images/Day87_Data1.png new file mode 100644 index 0000000..4789462 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data1.png differ diff --git a/2022/tr/Days/Images/Day87_Data10.png b/2022/tr/Days/Images/Day87_Data10.png new file mode 100644 index 0000000..19f14e0 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data10.png differ diff --git a/2022/tr/Days/Images/Day87_Data11.png b/2022/tr/Days/Images/Day87_Data11.png new file mode 100644 index 0000000..92eb707 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data11.png differ diff --git a/2022/tr/Days/Images/Day87_Data12.png b/2022/tr/Days/Images/Day87_Data12.png new file mode 100644 index 0000000..51653c1 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data12.png differ diff --git a/2022/tr/Days/Images/Day87_Data13.png b/2022/tr/Days/Images/Day87_Data13.png new file mode 100644 index 0000000..ff5e994 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data13.png differ diff --git a/2022/tr/Days/Images/Day87_Data14.png b/2022/tr/Days/Images/Day87_Data14.png new file mode 100644 index 0000000..b41fc93 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data14.png differ diff --git a/2022/tr/Days/Images/Day87_Data15.png b/2022/tr/Days/Images/Day87_Data15.png new file mode 100644 index 0000000..7481311 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data15.png differ diff --git a/2022/tr/Days/Images/Day87_Data16.png b/2022/tr/Days/Images/Day87_Data16.png new file mode 100644 index 0000000..f07f6de Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data16.png differ diff --git a/2022/tr/Days/Images/Day87_Data17.png b/2022/tr/Days/Images/Day87_Data17.png new file mode 100644 index 0000000..45742cb Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data17.png differ diff --git a/2022/tr/Days/Images/Day87_Data18.png b/2022/tr/Days/Images/Day87_Data18.png new file mode 100644 index 0000000..e5a4499 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data18.png differ diff --git a/2022/tr/Days/Images/Day87_Data19.png b/2022/tr/Days/Images/Day87_Data19.png new file mode 100644 index 0000000..afe525c Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data19.png differ diff --git a/2022/tr/Days/Images/Day87_Data2.png b/2022/tr/Days/Images/Day87_Data2.png new file mode 100644 index 0000000..89d183f Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data2.png differ diff --git a/2022/tr/Days/Images/Day87_Data20.png b/2022/tr/Days/Images/Day87_Data20.png new file mode 100644 index 0000000..93dccf0 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data20.png differ diff --git a/2022/tr/Days/Images/Day87_Data21.png b/2022/tr/Days/Images/Day87_Data21.png new file mode 100644 index 0000000..60dc8e3 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data21.png differ diff --git a/2022/tr/Days/Images/Day87_Data22.png b/2022/tr/Days/Images/Day87_Data22.png new file mode 100644 index 0000000..b9de773 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data22.png differ diff --git a/2022/tr/Days/Images/Day87_Data23.png b/2022/tr/Days/Images/Day87_Data23.png new file mode 100644 index 0000000..45051c8 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data23.png differ diff --git a/2022/tr/Days/Images/Day87_Data3.png b/2022/tr/Days/Images/Day87_Data3.png new file mode 100644 index 0000000..7b1b2ef Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data3.png differ diff --git a/2022/tr/Days/Images/Day87_Data4.png b/2022/tr/Days/Images/Day87_Data4.png new file mode 100644 index 0000000..8e4438f Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data4.png differ diff --git a/2022/tr/Days/Images/Day87_Data5.png b/2022/tr/Days/Images/Day87_Data5.png new file mode 100644 index 0000000..2326b61 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data5.png differ diff --git a/2022/tr/Days/Images/Day87_Data6.png b/2022/tr/Days/Images/Day87_Data6.png new file mode 100644 index 0000000..8470230 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data6.png differ diff --git a/2022/tr/Days/Images/Day87_Data7.png b/2022/tr/Days/Images/Day87_Data7.png new file mode 100644 index 0000000..56ac77e Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data7.png differ diff --git a/2022/tr/Days/Images/Day87_Data8.png b/2022/tr/Days/Images/Day87_Data8.png new file mode 100644 index 0000000..2b4c071 Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data8.png differ diff --git a/2022/tr/Days/Images/Day87_Data9.png b/2022/tr/Days/Images/Day87_Data9.png new file mode 100644 index 0000000..f9e991c Binary files /dev/null and b/2022/tr/Days/Images/Day87_Data9.png differ diff --git a/2022/tr/Days/Images/Day88_Data1.png b/2022/tr/Days/Images/Day88_Data1.png new file mode 100644 index 0000000..d315af2 Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data1.png differ diff --git a/2022/tr/Days/Images/Day88_Data10.png b/2022/tr/Days/Images/Day88_Data10.png new file mode 100644 index 0000000..225d4d1 Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data10.png differ diff --git a/2022/tr/Days/Images/Day88_Data11.png b/2022/tr/Days/Images/Day88_Data11.png new file mode 100644 index 0000000..fd5460e Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data11.png differ diff --git a/2022/tr/Days/Images/Day88_Data12.png b/2022/tr/Days/Images/Day88_Data12.png new file mode 100644 index 0000000..8a945ef Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data12.png differ diff --git a/2022/tr/Days/Images/Day88_Data13.png b/2022/tr/Days/Images/Day88_Data13.png new file mode 100644 index 0000000..77b427d Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data13.png differ diff --git a/2022/tr/Days/Images/Day88_Data14.png b/2022/tr/Days/Images/Day88_Data14.png new file mode 100644 index 0000000..1c2077b Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data14.png differ diff --git a/2022/tr/Days/Images/Day88_Data15.png b/2022/tr/Days/Images/Day88_Data15.png new file mode 100644 index 0000000..294607b Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data15.png differ diff --git a/2022/tr/Days/Images/Day88_Data16.png b/2022/tr/Days/Images/Day88_Data16.png new file mode 100644 index 0000000..c5d10fe Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data16.png differ diff --git a/2022/tr/Days/Images/Day88_Data17.png b/2022/tr/Days/Images/Day88_Data17.png new file mode 100644 index 0000000..be078dd Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data17.png differ diff --git a/2022/tr/Days/Images/Day88_Data2.png b/2022/tr/Days/Images/Day88_Data2.png new file mode 100644 index 0000000..2f3dd0d Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data2.png differ diff --git a/2022/tr/Days/Images/Day88_Data3.png b/2022/tr/Days/Images/Day88_Data3.png new file mode 100644 index 0000000..f6285e8 Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data3.png differ diff --git a/2022/tr/Days/Images/Day88_Data4.png b/2022/tr/Days/Images/Day88_Data4.png new file mode 100644 index 0000000..69510d8 Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data4.png differ diff --git a/2022/tr/Days/Images/Day88_Data5.png b/2022/tr/Days/Images/Day88_Data5.png new file mode 100644 index 0000000..ffbaeaa Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data5.png differ diff --git a/2022/tr/Days/Images/Day88_Data6.png b/2022/tr/Days/Images/Day88_Data6.png new file mode 100644 index 0000000..a5f8d60 Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data6.png differ diff --git a/2022/tr/Days/Images/Day88_Data7.png b/2022/tr/Days/Images/Day88_Data7.png new file mode 100644 index 0000000..df00fd6 Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data7.png differ diff --git a/2022/tr/Days/Images/Day88_Data8.png b/2022/tr/Days/Images/Day88_Data8.png new file mode 100644 index 0000000..301d9d6 Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data8.png differ diff --git a/2022/tr/Days/Images/Day88_Data9.png b/2022/tr/Days/Images/Day88_Data9.png new file mode 100644 index 0000000..afeeb5b Binary files /dev/null and b/2022/tr/Days/Images/Day88_Data9.png differ diff --git a/2022/tr/Days/Images/Day89_Data1.png b/2022/tr/Days/Images/Day89_Data1.png new file mode 100644 index 0000000..d399eee Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data1.png differ diff --git a/2022/tr/Days/Images/Day89_Data10.png b/2022/tr/Days/Images/Day89_Data10.png new file mode 100644 index 0000000..498cce6 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data10.png differ diff --git a/2022/tr/Days/Images/Day89_Data11.png b/2022/tr/Days/Images/Day89_Data11.png new file mode 100644 index 0000000..239c7f5 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data11.png differ diff --git a/2022/tr/Days/Images/Day89_Data12.png b/2022/tr/Days/Images/Day89_Data12.png new file mode 100644 index 0000000..59b1d82 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data12.png differ diff --git a/2022/tr/Days/Images/Day89_Data13.png b/2022/tr/Days/Images/Day89_Data13.png new file mode 100644 index 0000000..6b0e201 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data13.png differ diff --git a/2022/tr/Days/Images/Day89_Data14.png b/2022/tr/Days/Images/Day89_Data14.png new file mode 100644 index 0000000..48db39b Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data14.png differ diff --git a/2022/tr/Days/Images/Day89_Data15.png b/2022/tr/Days/Images/Day89_Data15.png new file mode 100644 index 0000000..dc49b04 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data15.png differ diff --git a/2022/tr/Days/Images/Day89_Data16.png b/2022/tr/Days/Images/Day89_Data16.png new file mode 100644 index 0000000..ac6c13b Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data16.png differ diff --git a/2022/tr/Days/Images/Day89_Data17.png b/2022/tr/Days/Images/Day89_Data17.png new file mode 100644 index 0000000..3ca572a Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data17.png differ diff --git a/2022/tr/Days/Images/Day89_Data18.png b/2022/tr/Days/Images/Day89_Data18.png new file mode 100644 index 0000000..e67834d Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data18.png differ diff --git a/2022/tr/Days/Images/Day89_Data19.png b/2022/tr/Days/Images/Day89_Data19.png new file mode 100644 index 0000000..4729465 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data19.png differ diff --git a/2022/tr/Days/Images/Day89_Data2.png b/2022/tr/Days/Images/Day89_Data2.png new file mode 100644 index 0000000..1d25b53 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data2.png differ diff --git a/2022/tr/Days/Images/Day89_Data20.png b/2022/tr/Days/Images/Day89_Data20.png new file mode 100644 index 0000000..1b43445 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data20.png differ diff --git a/2022/tr/Days/Images/Day89_Data21.png b/2022/tr/Days/Images/Day89_Data21.png new file mode 100644 index 0000000..4243618 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data21.png differ diff --git a/2022/tr/Days/Images/Day89_Data22.png b/2022/tr/Days/Images/Day89_Data22.png new file mode 100644 index 0000000..cbbef8e Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data22.png differ diff --git a/2022/tr/Days/Images/Day89_Data23.png b/2022/tr/Days/Images/Day89_Data23.png new file mode 100644 index 0000000..bc1d89a Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data23.png differ diff --git a/2022/tr/Days/Images/Day89_Data24.png b/2022/tr/Days/Images/Day89_Data24.png new file mode 100644 index 0000000..96107a3 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data24.png differ diff --git a/2022/tr/Days/Images/Day89_Data25.png b/2022/tr/Days/Images/Day89_Data25.png new file mode 100644 index 0000000..9ae633a Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data25.png differ diff --git a/2022/tr/Days/Images/Day89_Data26.png b/2022/tr/Days/Images/Day89_Data26.png new file mode 100644 index 0000000..c9ee6eb Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data26.png differ diff --git a/2022/tr/Days/Images/Day89_Data3.png b/2022/tr/Days/Images/Day89_Data3.png new file mode 100644 index 0000000..a5a0f85 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data3.png differ diff --git a/2022/tr/Days/Images/Day89_Data4.png b/2022/tr/Days/Images/Day89_Data4.png new file mode 100644 index 0000000..6df4731 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data4.png differ diff --git a/2022/tr/Days/Images/Day89_Data5.png b/2022/tr/Days/Images/Day89_Data5.png new file mode 100644 index 0000000..3d305c8 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data5.png differ diff --git a/2022/tr/Days/Images/Day89_Data6.png b/2022/tr/Days/Images/Day89_Data6.png new file mode 100644 index 0000000..d9b3f15 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data6.png differ diff --git a/2022/tr/Days/Images/Day89_Data7.png b/2022/tr/Days/Images/Day89_Data7.png new file mode 100644 index 0000000..1c87662 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data7.png differ diff --git a/2022/tr/Days/Images/Day89_Data8.png b/2022/tr/Days/Images/Day89_Data8.png new file mode 100644 index 0000000..af1df01 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data8.png differ diff --git a/2022/tr/Days/Images/Day89_Data9.png b/2022/tr/Days/Images/Day89_Data9.png new file mode 100644 index 0000000..4b76ed8 Binary files /dev/null and b/2022/tr/Days/Images/Day89_Data9.png differ diff --git a/2022/tr/Days/Images/Day8_Go1.png b/2022/tr/Days/Images/Day8_Go1.png new file mode 100644 index 0000000..81042a1 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go1.png differ diff --git a/2022/tr/Days/Images/Day8_Go10.png b/2022/tr/Days/Images/Day8_Go10.png new file mode 100644 index 0000000..60a026d Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go10.png differ diff --git a/2022/tr/Days/Images/Day8_Go11.png b/2022/tr/Days/Images/Day8_Go11.png new file mode 100644 index 0000000..4c14b8a Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go11.png differ diff --git a/2022/tr/Days/Images/Day8_Go12.png b/2022/tr/Days/Images/Day8_Go12.png new file mode 100644 index 0000000..c3c1529 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go12.png differ diff --git a/2022/tr/Days/Images/Day8_Go13.png b/2022/tr/Days/Images/Day8_Go13.png new file mode 100644 index 0000000..e467a69 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go13.png differ diff --git a/2022/tr/Days/Images/Day8_Go2.png b/2022/tr/Days/Images/Day8_Go2.png new file mode 100644 index 0000000..251583f Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go2.png differ diff --git a/2022/tr/Days/Images/Day8_Go3.png b/2022/tr/Days/Images/Day8_Go3.png new file mode 100644 index 0000000..7118aa1 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go3.png differ diff --git a/2022/tr/Days/Images/Day8_Go4.png b/2022/tr/Days/Images/Day8_Go4.png new file mode 100644 index 0000000..c8b2e38 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go4.png differ diff --git a/2022/tr/Days/Images/Day8_Go5.png b/2022/tr/Days/Images/Day8_Go5.png new file mode 100644 index 0000000..9c3f3b5 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go5.png differ diff --git a/2022/tr/Days/Images/Day8_Go6.png b/2022/tr/Days/Images/Day8_Go6.png new file mode 100644 index 0000000..3f63ba4 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go6.png differ diff --git a/2022/tr/Days/Images/Day8_Go7.png b/2022/tr/Days/Images/Day8_Go7.png new file mode 100644 index 0000000..e9e9299 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go7.png differ diff --git a/2022/tr/Days/Images/Day8_Go8.png b/2022/tr/Days/Images/Day8_Go8.png new file mode 100644 index 0000000..0f1b24c Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go8.png differ diff --git a/2022/tr/Days/Images/Day8_Go9.png b/2022/tr/Days/Images/Day8_Go9.png new file mode 100644 index 0000000..73ff3d8 Binary files /dev/null and b/2022/tr/Days/Images/Day8_Go9.png differ diff --git a/2022/tr/Days/Images/Day90_Data1.png b/2022/tr/Days/Images/Day90_Data1.png new file mode 100644 index 0000000..df9c47f Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data1.png differ diff --git a/2022/tr/Days/Images/Day90_Data10.png b/2022/tr/Days/Images/Day90_Data10.png new file mode 100644 index 0000000..80e1f7d Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data10.png differ diff --git a/2022/tr/Days/Images/Day90_Data11.png b/2022/tr/Days/Images/Day90_Data11.png new file mode 100644 index 0000000..5b200c0 Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data11.png differ diff --git a/2022/tr/Days/Images/Day90_Data12.png b/2022/tr/Days/Images/Day90_Data12.png new file mode 100644 index 0000000..f41f80f Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data12.png differ diff --git a/2022/tr/Days/Images/Day90_Data13.png b/2022/tr/Days/Images/Day90_Data13.png new file mode 100644 index 0000000..cda2866 Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data13.png differ diff --git a/2022/tr/Days/Images/Day90_Data2.png b/2022/tr/Days/Images/Day90_Data2.png new file mode 100644 index 0000000..46b337f Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data2.png differ diff --git a/2022/tr/Days/Images/Day90_Data3.png b/2022/tr/Days/Images/Day90_Data3.png new file mode 100644 index 0000000..242de61 Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data3.png differ diff --git a/2022/tr/Days/Images/Day90_Data4.png b/2022/tr/Days/Images/Day90_Data4.png new file mode 100644 index 0000000..5475e0e Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data4.png differ diff --git a/2022/tr/Days/Images/Day90_Data5.png b/2022/tr/Days/Images/Day90_Data5.png new file mode 100644 index 0000000..5bc6023 Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data5.png differ diff --git a/2022/tr/Days/Images/Day90_Data6.png b/2022/tr/Days/Images/Day90_Data6.png new file mode 100644 index 0000000..80938d7 Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data6.png differ diff --git a/2022/tr/Days/Images/Day90_Data7.png b/2022/tr/Days/Images/Day90_Data7.png new file mode 100644 index 0000000..904421a Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data7.png differ diff --git a/2022/tr/Days/Images/Day90_Data8.png b/2022/tr/Days/Images/Day90_Data8.png new file mode 100644 index 0000000..c059ad6 Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data8.png differ diff --git a/2022/tr/Days/Images/Day90_Data9.png b/2022/tr/Days/Images/Day90_Data9.png new file mode 100644 index 0000000..52955e3 Binary files /dev/null and b/2022/tr/Days/Images/Day90_Data9.png differ diff --git a/2022/tr/Days/Images/Day9_Go1.png b/2022/tr/Days/Images/Day9_Go1.png new file mode 100644 index 0000000..95a566d Binary files /dev/null and b/2022/tr/Days/Images/Day9_Go1.png differ diff --git a/2022/tr/Days/Images/Day9_Go2.png b/2022/tr/Days/Images/Day9_Go2.png new file mode 100644 index 0000000..955c718 Binary files /dev/null and b/2022/tr/Days/Images/Day9_Go2.png differ diff --git a/2022/tr/Days/Images/Day9_Go3.png b/2022/tr/Days/Images/Day9_Go3.png new file mode 100644 index 0000000..199f617 Binary files /dev/null and b/2022/tr/Days/Images/Day9_Go3.png differ diff --git a/2022/tr/Days/Images/Day9_Go4.png b/2022/tr/Days/Images/Day9_Go4.png new file mode 100644 index 0000000..ed171c4 Binary files /dev/null and b/2022/tr/Days/Images/Day9_Go4.png differ diff --git a/2022/tr/Days/Images/Day9_Go5.png b/2022/tr/Days/Images/Day9_Go5.png new file mode 100644 index 0000000..a1210c1 Binary files /dev/null and b/2022/tr/Days/Images/Day9_Go5.png differ diff --git a/2022/tr/Days/Images/Day9_Go6.png b/2022/tr/Days/Images/Day9_Go6.png new file mode 100644 index 0000000..549c629 Binary files /dev/null and b/2022/tr/Days/Images/Day9_Go6.png differ diff --git a/2022/tr/Days/Kubernetes/Rancher/.gitignore b/2022/tr/Days/Kubernetes/Rancher/.gitignore new file mode 100644 index 0000000..582c81c --- /dev/null +++ b/2022/tr/Days/Kubernetes/Rancher/.gitignore @@ -0,0 +1,33 @@ +# General +.vagrant/ +configs/ + +# Log files (if you are creating logs in debug mode, uncomment this) +# *.log + +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/Rancher/Vagrantfile b/2022/tr/Days/Kubernetes/Rancher/Vagrantfile new file mode 100644 index 0000000..37111fa --- /dev/null +++ b/2022/tr/Days/Kubernetes/Rancher/Vagrantfile @@ -0,0 +1,40 @@ +NUM_WORKER_NODES=2 +IP_NW="192.168.169." +IP_START=130 + +Vagrant.configure("2") do |config| + config.vm.provision "shell", inline: <<-SHELL + apt-get update -y + echo "$IP_NW$((IP_START)) master-node" >> /etc/hosts + echo "$IP_NW$((IP_START+1)) worker-node01" >> /etc/hosts + echo "$IP_NW$((IP_START+2)) worker-node02" >> /etc/hosts + SHELL + config.vm.box = "bento/ubuntu-21.10" + config.vm.box_check_update = true + + config.vm.define "master" do |master| + master.vm.hostname = "master-node" + master.vm.network :public_network, bridge: "Intel(R) Ethernet Connection (7) I219-V", ip: IP_NW + "#{IP_START}" + master.vm.provider "virtualbox" do |vb| + vb.memory = 4048 + vb.cpus = 2 + vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] + end + master.vm.provision "shell", path: "scripts/common.sh" + + end + + (1..NUM_WORKER_NODES).each do |i| + config.vm.define "node0#{i}" do |node| + node.vm.hostname = "worker-node0#{i}" + node.vm.network :public_network, bridge: "Intel(R) Ethernet Connection (7) I219-V", ip: IP_NW + "#{IP_START}" + node.vm.provider "virtualbox" do |vb| + vb.memory = 4048 + vb.cpus = 1 + vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] + end + node.vm.provision "shell", path: "scripts/common.sh" + + end + end + end \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/Rancher/scripts/common.sh b/2022/tr/Days/Kubernetes/Rancher/scripts/common.sh new file mode 100644 index 0000000..f1c1fdd --- /dev/null +++ b/2022/tr/Days/Kubernetes/Rancher/scripts/common.sh @@ -0,0 +1,91 @@ +#! /bin/bash + +# Variable Declaration +KUBERNETES_VERSION="1.23.3-00" + +# disable swap +sudo swapoff -a +# keeps the swaf off during reboot +sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab + +#Letting iptables see bridged traffic +lsmod | grep br_netfilter +sudo modprobe br_netfilter + +cat < /dev/null + +#Install Docker Engine +sudo apt-get update -y +sudo apt-get install -y docker-ce docker-ce-cli containerd.io + +#Configure containerd +sudo mkdir -p /etc/containerd +containerd config default | sudo tee /etc/containerd/config.toml + +#restart containerd +sudo systemctl restart containerd + +echo "ContainerD Runtime Configured Successfully" + +#Installing kubeadm, kubelet and kubectl +sudo apt-get update -y +sudo apt-get install -y apt-transport-https ca-certificates curl + +#Google Cloud public signing key +sudo curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg + +#Add Kubernetes apt repository +echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list + +#Update apt package index, install kubelet, kubeadm and kubectl, and pin their version: +sudo apt-get update -y + +sudo apt-get install -y kubelet kubectl kubeadm + +sudo apt-mark hold kubelet kubeadm kubectl + diff --git a/2022/tr/Days/Kubernetes/Rancher/scripts/master.sh b/2022/tr/Days/Kubernetes/Rancher/scripts/master.sh new file mode 100644 index 0000000..fbdf4fb --- /dev/null +++ b/2022/tr/Days/Kubernetes/Rancher/scripts/master.sh @@ -0,0 +1,83 @@ +#! /bin/bash + +MASTER_IP="10.0.0.10" +NODENAME=$(hostname -s) +POD_CIDR="192.168.0.0/16" + +sudo kubeadm config images pull + +echo "Preflight Check Passed: Downloaded All Required Images" + + +sudo kubeadm init --apiserver-advertise-address=$MASTER_IP --apiserver-cert-extra-sans=$MASTER_IP --pod-network-cidr=$POD_CIDR --node-name $NODENAME --ignore-preflight-errors Swap + +mkdir -p $HOME/.kube +sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config +sudo chown $(id -u):$(id -g) $HOME/.kube/config + +# Save Configs to shared /Vagrant location +# For Vagrant re-runs, check if there is existing configs in the location and delete it for saving new configuration. +config_path="/vagrant/configs" + +if [ -d $config_path ]; then + rm -f $config_path/* +else + mkdir -p /vagrant/configs +fi + +cp -i /etc/kubernetes/admin.conf /vagrant/configs/config +touch /vagrant/configs/join.sh +chmod +x /vagrant/configs/join.sh + +# Generete kubeadm join command +kubeadm token create --print-join-command > /vagrant/configs/join.sh + +# Install Calico Network Plugin +curl https://docs.projectcalico.org/manifests/calico.yaml -O + +kubectl apply -f calico.yaml + +# Install Metrics Server +kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml +kubectl patch deployment metrics-server -n kube-system --type 'json' -p '[{"op": "add", "path": "/spec/template/spec/containers/0/args/-", "value": "--kubelet-insecure-tls"}]' + +# Install Kubernetes Dashboard +kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.4.0/aio/deploy/recommended.yaml + +# Create Dashboard User +cat <> /vagrant/configs/token + +sudo -i -u vagrant bash << EOF +mkdir -p /home/vagrant/.kube +sudo cp -i /vagrant/configs/config /home/vagrant/.kube/ +sudo chown 1000:1000 /home/vagrant/.kube/config +EOF + +sudo systemctl restart systemd-resolved +sudo swapoff -a && sudo systemctl daemon-reload && sudo systemctl restart kubelet + + + diff --git a/2022/tr/Days/Kubernetes/Rancher/scripts/node.sh b/2022/tr/Days/Kubernetes/Rancher/scripts/node.sh new file mode 100644 index 0000000..ad16ffc --- /dev/null +++ b/2022/tr/Days/Kubernetes/Rancher/scripts/node.sh @@ -0,0 +1,14 @@ +#! /bin/bash + +/bin/bash /vagrant/configs/join.sh -v + +sudo -i -u vagrant bash << EOF +mkdir -p /home/vagrant/.kube +sudo cp -i /vagrant/configs/config /home/vagrant/.kube/ +sudo chown 1000:1000 /home/vagrant/.kube/config +NODENAME=$(hostname -s) +kubectl label node $(hostname -s) node-role.kubernetes.io/worker=worker-new +EOF + +sudo systemctl restart systemd-resolved +sudo swapoff -a && sudo systemctl daemon-reload && sudo systemctl restart kubelet \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/Vagrantfile b/2022/tr/Days/Kubernetes/Vagrantfile new file mode 100644 index 0000000..5141a15 --- /dev/null +++ b/2022/tr/Days/Kubernetes/Vagrantfile @@ -0,0 +1,40 @@ +NUM_WORKER_NODES=2 +IP_NW="10.0.0." +IP_START=10 + +Vagrant.configure("2") do |config| + config.vm.provision "shell", inline: <<-SHELL + apt-get update -y + echo "$IP_NW$((IP_START)) master-node" >> /etc/hosts + echo "$IP_NW$((IP_START+1)) worker-node01" >> /etc/hosts + echo "$IP_NW$((IP_START+2)) worker-node02" >> /etc/hosts + SHELL + config.vm.box = "bento/ubuntu-21.10" + config.vm.box_check_update = true + + config.vm.define "master" do |master| + master.vm.hostname = "master-node" + master.vm.network "private_network", ip: IP_NW + "#{IP_START}" + master.vm.provider "virtualbox" do |vb| + vb.memory = 4048 + vb.cpus = 2 + vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] + end + master.vm.provision "shell", path: "scripts/common.sh" + master.vm.provision "shell", path: "scripts/master.sh" + end + + (1..NUM_WORKER_NODES).each do |i| + config.vm.define "node0#{i}" do |node| + node.vm.hostname = "worker-node0#{i}" + node.vm.network "private_network", ip: IP_NW + "#{IP_START + i}" + node.vm.provider "virtualbox" do |vb| + vb.memory = 2048 + vb.cpus = 1 + vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] + end + node.vm.provision "shell", path: "scripts/common.sh" + node.vm.provision "shell", path: "scripts/node.sh" + end + end + end \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/configs/config b/2022/tr/Days/Kubernetes/configs/config new file mode 100644 index 0000000..784e7dd --- /dev/null +++ b/2022/tr/Days/Kubernetes/configs/config @@ -0,0 +1,19 @@ +apiVersion: v1 +clusters: +- cluster: + certificate-authority-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUMvakNDQWVhZ0F3SUJBZ0lCQURBTkJna3Foa2lHOXcwQkFRc0ZBREFWTVJNd0VRWURWUVFERXdwcmRXSmwKY201bGRHVnpNQjRYRFRJeU1ESXlNVEUwTVRrd04xb1hEVE15TURJeE9URTBNVGt3TjFvd0ZURVRNQkVHQTFVRQpBeE1LYTNWaVpYSnVaWFJsY3pDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBT3dHCm1pY3ZCMXVueDdoSnRBUlBTM0xTdmpTRmdhbi9wQStDbnZCZ0Q0SVFpaE9GZDZ6cXhYZzdhcTFEMk1XTUtTazMKa0gxbUtwa3Y0ZElsdEtFeWk2bm9hZUpkOUxVNmJOVUtjdkpnZ1NuSUZEWGx3MUM2bzNiRjF3bFZYUUtzWW1IUQpxRmh6UXJzWFdrL1ZsSm41bzlGdVpWaGs1aTlXVC92N0ZkM0pRZkNmUzA2Wld3L1BwMDhER09VUERITHdmMEk5CmE5alVRbW9BRG1LRVE0eDF3YTFGWU1KOVl5QTNsQWs2eUdHdktiM1piK25pMFpFYUtrVGxWN0l1OWdnc1crQkoKT2haUlg1M3dJSHBXbDBXRjV1ejRGejNPTHE3cllkdmFyYmFKQnF5YVF3TlRRbERiTVkwWDhqNUM4U2ptRVR1dQpxejFyK1VHTUhDV2pGRVg1SW1rQ0F3RUFBYU5aTUZjd0RnWURWUjBQQVFIL0JBUURBZ0trTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0hRWURWUjBPQkJZRUZLQWJiWnVsY2UralJDYitHSlVWekw5U1hGSXlNQlVHQTFVZEVRUU8KTUF5Q0NtdDFZbVZ5Ym1WMFpYTXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBTFFqY1IvT3VhY095WHBnQStLbgorbis0dkQyMkE3UVhJTlFlaWJ1NzNId1A0NXVNTmFKUnoyOTNvcnNpZXNMRi9QTWRzQWRVcEloTGtUWEhQOVVPCkdQYlFVSDQ4VnBMV2tlM2lsSGtHSGY4ZzMrSlkxWkdtaC9IVFcwekU0SFpJamRSK1NtK3FtakFNeCtJSlR4am0KdHYxWUczYVFvMFFIZnlRQ29jWC9KRGpGL0NZSURZTkE3K1R3QjI4WjlGRGF0VHFHd1pHcUNEWmo2Q0hJRm5heQp6eWZ0RVFhNHNJQXlFd3hMa1pGejBzRFJKTldJcVlwSmprMktGWVF1ZTRMRTRXTzA3NExsbHVtajJSU3dUWlMyCnlxdjdRTmJPSVk0QUl6RnVrdy9WbGlDckEwUFFQVGkyRnZFeUVKd3ROdHpUeGVkOVdyOU1jeXIxczQxSEJaL3IKRUQ4PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== + server: https://10.0.0.10:6443 + name: kubernetes +contexts: +- context: + cluster: kubernetes + user: kubernetes-admin + name: kubernetes-admin@kubernetes +current-context: kubernetes-admin@kubernetes +kind: Config +preferences: {} +users: +- name: kubernetes-admin + user: + client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURJVENDQWdtZ0F3SUJBZ0lJSDdlYlA3dC9hMFl3RFFZSktvWklodmNOQVFFTEJRQXdGVEVUTUJFR0ExVUUKQXhNS2EzVmlaWEp1WlhSbGN6QWVGdzB5TWpBeU1qRXhOREU1TURkYUZ3MHlNekF5TWpFeE5ERTVNRGxhTURReApGekFWQmdOVkJBb1REbk41YzNSbGJUcHRZWE4wWlhKek1Sa3dGd1lEVlFRREV4QnJkV0psY201bGRHVnpMV0ZrCmJXbHVNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTRkeklGK0U5eVpyWlRNMXAKMlY2c1p6amo3VGNFTktQYUgvV283eGt6eS9HQ0pIZUJxdVlwWjlpL2p4dHROckN6WWs5U004WmM0dmgrYnFLOApVb1dhQUt6ZmVUMWx6T0VBaitpRnpjYVhxZlBWdksyVkpwTkFFS0xOZC9STEFxWHRaRUNTdzE5TS8yUHFCZlM2CmxWZTRtanJubmRGUHZ1bWtSemM3SUx0Z0VvU2FRQXQ4MUYwTGZ6MTFVQjl5UG9FS0pqVUxMVmw3RG1kTUlwRlQKZ0ZvRFpXZnJFdHpnL3FWajV3bStVN3FCOHhVWHI5Y0l0Ung2b01LMWJqcFR6dG9jZlBSVFg0em9RZ254QUJjawp0Um5mdmtyYVY3a3ZaZTI3TnJhZG8zbTVwMHZVQlIrY0pNNUd2b1NqTTNlOENPMHhhc3JoQU9QbzcxZXZicGxICmxIREJxd0lEQVFBQm8xWXdWREFPQmdOVkhROEJBZjhFQkFNQ0JhQXdFd1lEVlIwbEJBd3dDZ1lJS3dZQkJRVUgKQXdJd0RBWURWUjBUQVFIL0JBSXdBREFmQmdOVkhTTUVHREFXZ0JTZ0cyMmJwWEh2bzBRbS9oaVZGY3kvVWx4UwpNakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBbGlzY1Fhckk4S2JxWFkzRms2Y0JEdzNpTmJ6M1lNL3I5TStJCld2bytIUTJRN2FkWWROdXBOU0l0eXZxdW56MzRlelk4TTNWcjZ1dnhoVWliOW84bHRjclQ4SStoNVZDQnI5VEkKYk9FS0xMSGd4dXZWKzZSK3RiL3NPYlZ0RVZwT3lFdWpDbjhwRU9HZ0ZLbTRnQ2lUbEN3dlVtcW45c2wvYmVXVApMSWdsSzFtREk0NElEbHd5bmlWVFFOenNZS1VkajdZN1hQZVhHb3NoTEJUODZGd2dOZjY0WlBvZDFRS1R3WEJGCkFuaHk2WXVPVTV3bGJxazdtNWRLeXVSeXJKREZKN3pDTldXOHRjWDBKTk10d2dpeGsxMWFMa2RQTHU1S1NCd1oKa3lLdzdmK3pqVHg4ejcxTlU1TStBTDJjd1U0WnJaSFVUYVpTamw0cW1JeXNSWmN3ekE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== + client-key-data: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFcFFJQkFBS0NBUUVBNGR6SUYrRTl5WnJaVE0xcDJWNnNaempqN1RjRU5LUGFIL1dvN3hrenkvR0NKSGVCCnF1WXBaOWkvanh0dE5yQ3pZazlTTThaYzR2aCticUs4VW9XYUFLemZlVDFsek9FQWoraUZ6Y2FYcWZQVnZLMlYKSnBOQUVLTE5kL1JMQXFYdFpFQ1N3MTlNLzJQcUJmUzZsVmU0bWpybm5kRlB2dW1rUnpjN0lMdGdFb1NhUUF0OAoxRjBMZnoxMVVCOXlQb0VLSmpVTExWbDdEbWRNSXBGVGdGb0RaV2ZyRXR6Zy9xVmo1d20rVTdxQjh4VVhyOWNJCnRSeDZvTUsxYmpwVHp0b2NmUFJUWDR6b1FnbnhBQmNrdFJuZnZrcmFWN2t2WmUyN05yYWRvM201cDB2VUJSK2MKSk01R3ZvU2pNM2U4Q08weGFzcmhBT1BvNzFldmJwbEhsSERCcXdJREFRQUJBb0lCQVFDMnlXU3QzcjJRWU44bgpScjQ1Q21OZ0RpeDNsNlN4clVFanlEMzFjbUgyMVBiTDZHTnFHV2E5QWk3VTlBOUl5V3dEVGNwcTJFZm43ODd5ClhvVW1DN1Y4Z210QXhTMlR4eXdiU3NTdXFkK256UXZXN0d2ZWtpQ3cxZkNPK1llVEZ4R3Rwb3lmeklxVnpSaGgKeFpNU3RiRlNNQVd1Tk96aXhsY0t3Mm40cld1c3oxbmhYOHd6T0tvdjZjSlRqOWhPTWpnWkpJektPSitCRzk2QQp5UWZBa3VjK2FJWDREUld5ZkZWN1ZNOGM1YldCTFJ5ZkJaYVdscTFUMlJNVHdSNTZVMG5qSVpFRG5NTXZhR1dCCnFod1lFalA3ZmswN1FEVDZoTWUvYjIxWnZTRW5keUhSai93a29yQk53dmZ5L1B3L2lic250Q1ZTQmNnbDJaUGwKb3BtVjFoblJBb0dCQVA3WEJIY0c1OTZ2TTYvS2pHM3EwdDBGVndYKzB6NXpieCtPOEN5RVRZQzZDcERxNmJ0NwpOV1JVRmNzM25BVzZNTXhnTW5oSXBGS0ZUcktEUng1ZU1mT3FFMkIvbWtNdEN3d1g3bEhSSVB1SU1KWG5ZVHgyClpRWGJ6ejVYYVlSSlcyQ2kxeFVxL2xBYXE2eVZ6cFFwdWlCT2VibmZTUDBVaVJwMHZZOVpjTEgvQW9HQkFPTGoKL3FWQTRVSU1Kb2N1MjBFZFQwQ2ZMZnJxbUlnSGNzWmZWRTdrMUVLMzlESDhPV1ZkQzZrVXA4V25NNzErb0JmdgpUT0k1NnZKQittbDQydG9hREJUVVZGRUU3bW1zZjhEMUJReWJqMnJqWHdHUDFmbEdSWC94Qk42U2d3MGpYRmRZCjBIQ091UGxadU4zemxPZ1BYRlQvRnZkdXgzc1lMMWx5YXZzUEtsaFZBb0dCQUlWdzk5Q1AyQ2g5MjNYSWZRSXQKZlI3bzVlbW94dHFqdldOc0NJMTI5ZEpiR0o5THN2cE9DT1l4Tlh4RThUajZod1R0dGwvUHdlUElGQzVibVlqbwpVQVhFWUFNZXJodFE0Y0VDWXZPS3ExZXF0NjQzQzI2S25GbVdBUTRtM1lTOG1OR2dVem10V3A5OVo3bW1kQmFYClJ2UVZ3NTIxc3RWNnhGUUxIeHVKL1AzbkFvR0FPU3YrUktIZW9RZnl4V21YTWdjeXF6UHhJQ0x4SUlYUDlCQ2QKYSt2WldKNkYxL3FZYytSSVJlakFoZHVsKy8vbVUyR25XL0lBTTk5UVBEZUozaDltSC9HSTlZbHFraEkzZHVYRwp5ZkNBNlF3MktteVdIR1FLcXp5T1g0OUhtbzNvZk5JU1krcHl6ZEkvOVIybHpmdmc1a0lKQlh4U283L3FYbjJvClcyN3MycWtDZ1lFQTlXbHZaUUxIZ1RRcnRkU1daZktHY2ZZNHhqd2hYdGxRaWIwYXNEdFZXL2VjbURBQkhueWcKRERUVHlUWXdPVWFqYUZXdUNoTzRTNk9SYng5dmswRWxwZmNML2VaVUNCZnpXeUxmWGZEdkxjWWx5cEk5RUorSwp5SDNmb0s0V0Q1ajd0c0drUzZsWWdTZVdSRUtvcTZPaWE3cEtoQ0p2ZXNrUFFJUW1NWGgyMDA4PQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo= diff --git a/2022/tr/Days/Kubernetes/configs/join.sh b/2022/tr/Days/Kubernetes/configs/join.sh new file mode 100644 index 0000000..25ef534 --- /dev/null +++ b/2022/tr/Days/Kubernetes/configs/join.sh @@ -0,0 +1 @@ +kubeadm join 10.0.0.10:6443 --token 0s6dei.3nv1q4xkkv8g98qc --discovery-token-ca-cert-hash sha256:5a7d70a8498795c680b2fe3d7840585ac74b0451769f4781bc4298de4c9b23f8 diff --git a/2022/tr/Days/Kubernetes/configs/token b/2022/tr/Days/Kubernetes/configs/token new file mode 100644 index 0000000..c92cc1c --- /dev/null +++ b/2022/tr/Days/Kubernetes/configs/token @@ -0,0 +1 @@ +eyJhbGciOiJSUzI1NiIsImtpZCI6IlM1WGxrRnVIclJRaEVDbmg3cndZZFVTRTFpT0lfQzZsZ2NXbHZoOS1pbVUifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlcm5ldGVzLWRhc2hib2FyZCIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJhZG1pbi11c2VyLXRva2VuLWo1a3B2Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQubmFtZSI6ImFkbWluLXVzZXIiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlcnZpY2UtYWNjb3VudC51aWQiOiJiZTZjZmUwZS0yYzFhLTRkNTYtYmVkMC1jYWRmYjYxNzA1N2YiLCJzdWIiOiJzeXN0ZW06c2VydmljZWFjY291bnQ6a3ViZXJuZXRlcy1kYXNoYm9hcmQ6YWRtaW4tdXNlciJ9.LaBPEh6Qantd8tAc0X5DY9dDwUqZpxu38FHnp9TSJw-ghs3TsjrscFulUeEAtp2ng3ElLcU4SbNKPGJflF2dyW9Tmfn-Kt_6Jwq8HQ9GOCwAicEz0JVireHA7EWhATzuT56eO6MTe-2j5bpGnPQRJJtQ8AbtAN3nVK7RPjSzmc8Ppqx1z5i4oCGwiyRlGwqT-FkCtQLbQaQ4XmrASQoN4pJ_OBy5slztUhk32HdGP6pQx5c-nfei-of_4ij_fHrP0xEEfmVVvXqi9WKv1PLkQ3qTiSFDzv8M2sE4T6XmCGBbw7gyHzEGSpOAPZr00bX_YMCUvEF0lyP4YK696xWCBA \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/nginx-stateless-demo.yaml b/2022/tr/Days/Kubernetes/nginx-stateless-demo.yaml new file mode 100644 index 0000000..2c1426c --- /dev/null +++ b/2022/tr/Days/Kubernetes/nginx-stateless-demo.yaml @@ -0,0 +1,41 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: nginx + "labels": { + "name": "nginx" + } +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx-deployment + namespace: nginx +spec: + selector: + matchLabels: + app: nginx + replicas: 1 + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Service +metadata: + name: nginx-service + namespace: nginx +spec: + selector: + app: nginx-deployment + ports: + - protocol: TCP + port: 80 + targetPort: 80 \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/pacman-ingress.yaml b/2022/tr/Days/Kubernetes/pacman-ingress.yaml new file mode 100644 index 0000000..5d08779 --- /dev/null +++ b/2022/tr/Days/Kubernetes/pacman-ingress.yaml @@ -0,0 +1,17 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: pacman-ingress + namespace: pacman +spec: + rules: + - host: pacman.com + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: pacman + port: + number: 80 \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/pacman-stateful-demo.yaml b/2022/tr/Days/Kubernetes/pacman-stateful-demo.yaml new file mode 100644 index 0000000..143e53d --- /dev/null +++ b/2022/tr/Days/Kubernetes/pacman-stateful-demo.yaml @@ -0,0 +1,281 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: pacman + "labels": { + "name": "pacman" + } +--- +apiVersion: policy/v1beta1 +kind: PodSecurityPolicy +metadata: + name: pacman + namespace: pacman +spec: + privileged: true + seLinux: + rule: RunAsAny + supplementalGroups: + rule: RunAsAny + runAsUser: + rule: RunAsAny + fsGroup: + rule: RunAsAny + volumes: + - '*' +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: pacman-clusterrole +rules: +- apiGroups: + - policy + resources: + - podsecuritypolicies + verbs: + - use + resourceNames: + - pacman +- apiGroups: [""] + resources: ["pods", "nodes"] + verbs: ["get", "watch", "list"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: pacman-clusterrole + namespace: pacman +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: pacman-clusterrole +subjects: +- apiGroup: rbac.authorization.k8s.io + kind: Group + name: system:serviceaccounts +- kind: ServiceAccount + name: default + namespace: pacman +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: pacman-clusterrole + namespace: pacman +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: pacman-clusterrole +subjects: +- apiGroup: rbac.authorization.k8s.io + kind: Group + name: system:serviceaccounts +- kind: ServiceAccount + name: default + namespace: pacman +--- +apiVersion: v1 +kind: Secret +metadata: + name: mongodb-users-secret + namespace: pacman +type: Opaque +data: + database-admin-name: Y2x5ZGU= + database-admin-password: Y2x5ZGU= + database-name: cGFjbWFu + database-password: cGlua3k= + database-user: Ymxpbmt5 +--- +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: mongo-storage + namespace: pacman +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + labels: + name: mongo + name: mongo + namespace: pacman + annotations: + source: "https://github.com/saintdle/pacman-tanzu" +spec: + replicas: 1 + serviceName: mongo + selector: + matchLabels: + name: mongo + template: + metadata: + labels: + name: mongo + spec: + initContainers: + - args: + - | + mkdir -p /bitnami/mongodb + chown -R "1001:1001" "/bitnami/mongodb" + command: + - /bin/bash + - -ec + image: docker.io/bitnami/bitnami-shell:10-debian-10-r158 + imagePullPolicy: Always + name: volume-permissions + resources: {} + securityContext: + runAsUser: 0 + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + volumeMounts: + - mountPath: /bitnami/mongodb + name: mongo-db + restartPolicy: Always + schedulerName: default-scheduler + securityContext: + fsGroup: 1001 + serviceAccountName: default + terminationGracePeriodSeconds: 30 + volumes: + - name: mongo-db + persistentVolumeClaim: + claimName: mongo-storage + containers: + - image: bitnami/mongodb:4.4.8 + name: mongo + env: + - name: MONGODB_ROOT_PASSWORD + valueFrom: + secretKeyRef: + key: database-admin-password + name: mongodb-users-secret + - name: MONGODB_DATABASE + valueFrom: + secretKeyRef: + key: database-name + name: mongodb-users-secret + - name: MONGODB_PASSWORD + valueFrom: + secretKeyRef: + key: database-password + name: mongodb-users-secret + - name: MONGODB_USERNAME + valueFrom: + secretKeyRef: + key: database-user + name: mongodb-users-secret + readinessProbe: + exec: + command: + - /bin/sh + - -i + - -c + - mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USERNAME -p $MONGODB_PASSWORD + --eval="quit()" + ports: + - name: mongo + containerPort: 27017 + volumeMounts: + - name: mongo-db + mountPath: /bitnami/mongodb/ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + name: pacman + name: pacman + namespace: pacman + annotations: + source: "https://github.com/saintdle/pacman-tanzu" +spec: + replicas: 1 + selector: + matchLabels: + name: pacman + template: + metadata: + labels: + name: pacman + spec: + containers: + - image: quay.io/ifont/pacman-nodejs-app:latest + name: pacman + ports: + - containerPort: 8080 + name: http-server + protocol: TCP + livenessProbe: + httpGet: + path: / + port: 8080 + readinessProbe: + httpGet: + path: / + port: 8080 + env: + - name: MONGO_SERVICE_HOST + value: mongo + - name: MONGO_AUTH_USER + valueFrom: + secretKeyRef: + key: database-user + name: mongodb-users-secret + - name: MONGO_AUTH_PWD + valueFrom: + secretKeyRef: + key: database-password + name: mongodb-users-secret + - name: MONGO_DATABASE + value: pacman + - name: MY_MONGO_PORT + value: "27017" + - name: MONGO_USE_SSL + value: "false" + - name: MONGO_VALIDATE_SSL + value: "false" + - name: MY_NODE_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: spec.nodeName +--- +apiVersion: v1 +kind: Service +metadata: + labels: + name: mongo + name: mongo + namespace: pacman +spec: + type: ClusterIP + ports: + - port: 27017 + targetPort: 27017 + selector: + name: mongo +--- +apiVersion: v1 +kind: Service +metadata: + name: pacman + namespace: pacman + labels: + name: pacman +spec: + type: LoadBalancer + ports: + - port: 80 + targetPort: 8080 + protocol: TCP + selector: + name: pacman \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/scripts/common.sh b/2022/tr/Days/Kubernetes/scripts/common.sh new file mode 100644 index 0000000..f1c1fdd --- /dev/null +++ b/2022/tr/Days/Kubernetes/scripts/common.sh @@ -0,0 +1,91 @@ +#! /bin/bash + +# Variable Declaration +KUBERNETES_VERSION="1.23.3-00" + +# disable swap +sudo swapoff -a +# keeps the swaf off during reboot +sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab + +#Letting iptables see bridged traffic +lsmod | grep br_netfilter +sudo modprobe br_netfilter + +cat < /dev/null + +#Install Docker Engine +sudo apt-get update -y +sudo apt-get install -y docker-ce docker-ce-cli containerd.io + +#Configure containerd +sudo mkdir -p /etc/containerd +containerd config default | sudo tee /etc/containerd/config.toml + +#restart containerd +sudo systemctl restart containerd + +echo "ContainerD Runtime Configured Successfully" + +#Installing kubeadm, kubelet and kubectl +sudo apt-get update -y +sudo apt-get install -y apt-transport-https ca-certificates curl + +#Google Cloud public signing key +sudo curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg + +#Add Kubernetes apt repository +echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list + +#Update apt package index, install kubelet, kubeadm and kubectl, and pin their version: +sudo apt-get update -y + +sudo apt-get install -y kubelet kubectl kubeadm + +sudo apt-mark hold kubelet kubeadm kubectl + diff --git a/2022/tr/Days/Kubernetes/scripts/master.sh b/2022/tr/Days/Kubernetes/scripts/master.sh new file mode 100644 index 0000000..fbdf4fb --- /dev/null +++ b/2022/tr/Days/Kubernetes/scripts/master.sh @@ -0,0 +1,83 @@ +#! /bin/bash + +MASTER_IP="10.0.0.10" +NODENAME=$(hostname -s) +POD_CIDR="192.168.0.0/16" + +sudo kubeadm config images pull + +echo "Preflight Check Passed: Downloaded All Required Images" + + +sudo kubeadm init --apiserver-advertise-address=$MASTER_IP --apiserver-cert-extra-sans=$MASTER_IP --pod-network-cidr=$POD_CIDR --node-name $NODENAME --ignore-preflight-errors Swap + +mkdir -p $HOME/.kube +sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config +sudo chown $(id -u):$(id -g) $HOME/.kube/config + +# Save Configs to shared /Vagrant location +# For Vagrant re-runs, check if there is existing configs in the location and delete it for saving new configuration. +config_path="/vagrant/configs" + +if [ -d $config_path ]; then + rm -f $config_path/* +else + mkdir -p /vagrant/configs +fi + +cp -i /etc/kubernetes/admin.conf /vagrant/configs/config +touch /vagrant/configs/join.sh +chmod +x /vagrant/configs/join.sh + +# Generete kubeadm join command +kubeadm token create --print-join-command > /vagrant/configs/join.sh + +# Install Calico Network Plugin +curl https://docs.projectcalico.org/manifests/calico.yaml -O + +kubectl apply -f calico.yaml + +# Install Metrics Server +kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml +kubectl patch deployment metrics-server -n kube-system --type 'json' -p '[{"op": "add", "path": "/spec/template/spec/containers/0/args/-", "value": "--kubelet-insecure-tls"}]' + +# Install Kubernetes Dashboard +kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.4.0/aio/deploy/recommended.yaml + +# Create Dashboard User +cat <> /vagrant/configs/token + +sudo -i -u vagrant bash << EOF +mkdir -p /home/vagrant/.kube +sudo cp -i /vagrant/configs/config /home/vagrant/.kube/ +sudo chown 1000:1000 /home/vagrant/.kube/config +EOF + +sudo systemctl restart systemd-resolved +sudo swapoff -a && sudo systemctl daemon-reload && sudo systemctl restart kubelet + + + diff --git a/2022/tr/Days/Kubernetes/scripts/node.sh b/2022/tr/Days/Kubernetes/scripts/node.sh new file mode 100644 index 0000000..ad16ffc --- /dev/null +++ b/2022/tr/Days/Kubernetes/scripts/node.sh @@ -0,0 +1,14 @@ +#! /bin/bash + +/bin/bash /vagrant/configs/join.sh -v + +sudo -i -u vagrant bash << EOF +mkdir -p /home/vagrant/.kube +sudo cp -i /vagrant/configs/config /home/vagrant/.kube/ +sudo chown 1000:1000 /home/vagrant/.kube/config +NODENAME=$(hostname -s) +kubectl label node $(hostname -s) node-role.kubernetes.io/worker=worker-new +EOF + +sudo systemctl restart systemd-resolved +sudo swapoff -a && sudo systemctl daemon-reload && sudo systemctl restart kubelet \ No newline at end of file diff --git a/2022/tr/Days/Kubernetes/statefulset.yaml b/2022/tr/Days/Kubernetes/statefulset.yaml new file mode 100644 index 0000000..a1e2526 --- /dev/null +++ b/2022/tr/Days/Kubernetes/statefulset.yaml @@ -0,0 +1,86 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + labels: + name: mongo + name: mongo + annotations: + source: "https://github.com/saintdle/pacman-tanzu" +spec: + replicas: 1 + serviceName: mongo + selector: + matchLabels: + name: mongo + template: + metadata: + labels: + name: mongo + spec: + initContainers: + - args: + - | + mkdir -p /bitnami/mongodb + chown -R "1001:1001" "/bitnami/mongodb" + command: + - /bin/bash + - -ec + image: docker.io/bitnami/bitnami-shell:10-debian-10-r158 + imagePullPolicy: Always + name: volume-permissions + resources: {} + securityContext: + runAsUser: 0 + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + volumeMounts: + - mountPath: /bitnami/mongodb + name: mongo-db + restartPolicy: Always + schedulerName: default-scheduler + securityContext: + fsGroup: 1001 + serviceAccountName: default + terminationGracePeriodSeconds: 30 + volumes: + - name: mongo-db + persistentVolumeClaim: + claimName: mongo-storage + containers: + - image: bitnami/mongodb:4.4.8 + name: mongo + env: + - name: MONGODB_ROOT_PASSWORD + valueFrom: + secretKeyRef: + key: database-admin-password + name: mongodb-users-secret + - name: MONGODB_DATABASE + valueFrom: + secretKeyRef: + key: database-name + name: mongodb-users-secret + - name: MONGODB_PASSWORD + valueFrom: + secretKeyRef: + key: database-password + name: mongodb-users-secret + - name: MONGODB_USERNAME + valueFrom: + secretKeyRef: + key: database-user + name: mongodb-users-secret + readinessProbe: + exec: + command: + - /bin/sh + - -i + - -c + - mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USERNAME -p $MONGODB_PASSWORD + --eval="quit()" + ports: + - name: mongo + containerPort: 27017 + volumeMounts: + - name: mongo-db + mountPath: /bitnami/mongodb/ \ No newline at end of file diff --git a/2022/tr/Days/Linux/VAGRANTFILE b/2022/tr/Days/Linux/VAGRANTFILE new file mode 100644 index 0000000..d96ae1d --- /dev/null +++ b/2022/tr/Days/Linux/VAGRANTFILE @@ -0,0 +1,8 @@ +Vagrant.configure("2") do |config| + config.vm.box = "chenhan/ubuntu-desktop-20.04" + config.vm.provider :virtualbox do |v| + v.memory = 8096 + v.cpus = 4 + v.customize ["modifyvm", :id, "--vram", "128"] +end +end diff --git a/2022/tr/Days/Linux/create-user.sh b/2022/tr/Days/Linux/create-user.sh new file mode 100644 index 0000000..606a5cb --- /dev/null +++ b/2022/tr/Days/Linux/create-user.sh @@ -0,0 +1,29 @@ +#! /usr/bin/bash +if [ -z "${1}" ] +then + echo "¿Qué nombre de usuario quieres?\n" + read username + echo "¿Cuál es el password?" + echo "(Cuando teclees no se verá nada por aquí)\n" + read -s password + + # Un usuario puede ser pasado como un argumento en la línea de comandos + echo "\nSe está creando la cuenta de usuario $username\n" + + # Se crea un usuario con el nombre del argumento. + sudo useradd -m $username + + # Se puede pasar una contraseña como argumento en la línea de comandos. + # Se establece la contraseña para el usuario. + sudo chpasswd <<< $username:$password + + sleep 2 + echo "Si quieres borrar el usuario entonces pasa 'del' y nombre de usuario en el argumento de la línea de comandos. e.g: ./create-user.sh del username" + +else + sudo userdel -rf "${2}" + sleep 2 + echo "La cuenta de usuario ${2} se ha eliminado con éxito." + exit 0 +fi + diff --git a/2022/tr/Days/Monitoring/EFK Stack/efk-stack.yaml b/2022/tr/Days/Monitoring/EFK Stack/efk-stack.yaml new file mode 100644 index 0000000..46b61af --- /dev/null +++ b/2022/tr/Days/Monitoring/EFK Stack/efk-stack.yaml @@ -0,0 +1,256 @@ +--- +#Create namespace, named kube logging +kind: Namespace +apiVersion: v1 +metadata: + name: kube-logging +--- +# Create a Headless services named elasticsearch, that will define a DNS domain +kind: Service +apiVersion: v1 +#Define the service in the namespace +metadata: + name: elasticsearch + namespace: kube-logging + labels: + app: elasticsearch +spec: + selector: + app: elasticsearch + #Renders The service Headless + clusterIP: None + ports: + - port: 9200 + name: rest + - port: 9300 + name: inter-node +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: data + labels: + type: elasticsearch +spec: + storageClassName: standard + capacity: + storage: 50Gi + accessModes: + - ReadWriteMany + hostPath: + path: "/mnt/data" +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: es-cluster + namespace: kube-logging +spec: + serviceName: elasticsearch + replicas: 3 + selector: + matchLabels: + app: elasticsearch + template: + metadata: + labels: + app: elasticsearch + spec: + containers: + - name: elasticsearch + image: docker.elastic.co/elasticsearch/elasticsearch:7.2.0 + resources: + limits: + cpu: 1000m + requests: + cpu: 100m + ports: + - containerPort: 9200 + name: rest + protocol: TCP + - containerPort: 9300 + name: inter-node + protocol: TCP + volumeMounts: + - name: data + mountPath: /usr/share/elasticsearch/data + env: + - name: cluster.name + value: k8s-logs + - name: node.name + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: discovery.seed_hosts + value: "es-cluster-0.elasticsearch,es-cluster-1.elasticsearch,es-cluster-2.elasticsearch" + - name: cluster.initial_master_nodes + value: "es-cluster-0,es-cluster-1,es-cluster-2" + - name: ES_JAVA_OPTS + value: "-Xms512m -Xmx512m" + initContainers: + - name: fix-permissions + image: busybox + command: ["sh", "-c", "chown -R 1000:1000 /usr/share/elasticsearch/data"] + securityContext: + privileged: true + volumeMounts: + - name: data + mountPath: /usr/share/elasticsearch/data + - name: increase-vm-max-map + image: busybox + command: ["sysctl", "-w", "vm.max_map_count=262144"] + securityContext: + privileged: true + - name: increase-fd-ulimit + image: busybox + command: ["sh", "-c", "ulimit -n 65536"] + securityContext: + privileged: true + volumeClaimTemplates: + - metadata: + name: data + labels: + app: elasticsearch + spec: + accessModes: [ "ReadWriteOnce" ] + storageClassName: standard + resources: + requests: + storage: 5Gi +--- +apiVersion: v1 +kind: Service +metadata: + name: kibana + namespace: kube-logging + labels: + app: kibana +spec: + ports: + - port: 5601 + selector: + app: kibana +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: kibana + namespace: kube-logging + labels: + app: kibana +spec: + replicas: 1 + selector: + matchLabels: + app: kibana + template: + metadata: + labels: + app: kibana + spec: + containers: + - name: kibana + image: docker.elastic.co/kibana/kibana:7.2.0 + resources: + limits: + cpu: 1000m + requests: + cpu: 100m + env: + - name: ELASTICSEARCH_URL + value: http://elasticsearch:9200 + ports: + - containerPort: 5601 +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: fluentd + namespace: kube-logging + labels: + app: fluentd +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: fluentd + labels: + app: fluentd +rules: +- apiGroups: + - "" + resources: + - pods + - namespaces + verbs: + - get + - list + - watch +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: fluentd +roleRef: + kind: ClusterRole + name: fluentd + apiGroup: rbac.authorization.k8s.io +subjects: +- kind: ServiceAccount + name: fluentd + namespace: kube-logging +--- +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: fluentd + namespace: kube-logging + labels: + app: fluentd +spec: + selector: + matchLabels: + app: fluentd + template: + metadata: + labels: + app: fluentd + spec: + serviceAccount: fluentd + serviceAccountName: fluentd + tolerations: + - key: node-role.kubernetes.io/master + effect: NoSchedule + containers: + - name: fluentd + image: fluent/fluentd-kubernetes-daemonset:v1.4.2-debian-elasticsearch-1.1 + env: + - name: FLUENT_ELASTICSEARCH_HOST + value: "elasticsearch.kube-logging.svc.cluster.local" + - name: FLUENT_ELASTICSEARCH_PORT + value: "9200" + - name: FLUENT_ELASTICSEARCH_SCHEME + value: "http" + - name: FLUENTD_SYSTEMD_CONF + value: disable + resources: + limits: + memory: 512Mi + requests: + cpu: 100m + memory: 200Mi + volumeMounts: + - name: varlog + mountPath: /var/log + - name: varlibdockercontainers + mountPath: /var/lib/docker/containers + readOnly: true + terminationGracePeriodSeconds: 30 + volumes: + - name: varlog + hostPath: + path: /var/log + - name: varlibdockercontainers + hostPath: + path: /var/lib/docker/containers +--- diff --git a/2022/tr/Days/Monitoring/Elastic Stack/.env b/2022/tr/Days/Monitoring/Elastic Stack/.env new file mode 100644 index 0000000..cd8b118 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/.env @@ -0,0 +1,22 @@ +ELASTIC_VERSION=8.1.0 + +## Passwords for stack users +# + +# User 'elastic' (built-in) +# +# Superuser role, full access to cluster management and data indices. +# https://www.elastic.co/guide/en/elasticsearch/reference/current/built-in-users.html +ELASTIC_PASSWORD='90DaysOfDevOps' + +# User 'logstash_internal' (custom) +# +# The user Logstash uses to connect and send data to Elasticsearch. +# https://www.elastic.co/guide/en/logstash/current/ls-security.html +LOGSTASH_INTERNAL_PASSWORD='90DaysOfDevOps' + +# User 'kibana_system' (built-in) +# +# The user Kibana uses to connect and communicate with Elasticsearch. +# https://www.elastic.co/guide/en/elasticsearch/reference/current/built-in-users.html +KIBANA_SYSTEM_PASSWORD='90DaysOfDevOps' diff --git a/2022/tr/Days/Monitoring/Elastic Stack/LICENSE b/2022/tr/Days/Monitoring/Elastic Stack/LICENSE new file mode 100644 index 0000000..0dbd69f --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Anthony Lapenna + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/2022/tr/Days/Monitoring/Elastic Stack/docker-compose.yaml b/2022/tr/Days/Monitoring/Elastic Stack/docker-compose.yaml new file mode 100644 index 0000000..1f85ef6 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/docker-compose.yaml @@ -0,0 +1,93 @@ +version: '3.7' + +services: + + # The 'setup' service runs a one-off script which initializes the + # 'logstash_internal' and 'kibana_system' users inside Elasticsearch with the + # values of the passwords defined in the '.env' file. + # + # This task is only performed during the *initial* startup of the stack. On all + # subsequent runs, the service simply returns immediately, without performing + # any modification to existing users. + setup: + build: + context: setup/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + init: true + volumes: + - setup:/state:Z + environment: + ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} + LOGSTASH_INTERNAL_PASSWORD: ${LOGSTASH_INTERNAL_PASSWORD:-} + KIBANA_SYSTEM_PASSWORD: ${KIBANA_SYSTEM_PASSWORD:-} + networks: + - elk + + elasticsearch: + build: + context: elasticsearch/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + volumes: + - ./elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro,z + - elasticsearch:/usr/share/elasticsearch/data:z + ports: + - "9200:9200" + - "9300:9300" + environment: + ES_JAVA_OPTS: -Xmx256m -Xms256m + # Bootstrap password. + # Used to initialize the keystore during the initial startup of + # Elasticsearch. Ignored on subsequent runs. + ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} + # Use single node discovery in order to disable production mode and avoid bootstrap checks. + # see: https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html + discovery.type: single-node + networks: + - elk + + logstash: + build: + context: logstash/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + volumes: + - ./logstash/config/logstash.yml:/usr/share/logstash/config/logstash.yml:ro,Z + - ./logstash/pipeline:/usr/share/logstash/pipeline:ro,Z + ports: + - "5044:5044" + - "5000:5000/tcp" + - "5000:5000/udp" + - "9600:9600" + environment: + LS_JAVA_OPTS: -Xmx256m -Xms256m + LOGSTASH_INTERNAL_PASSWORD: ${LOGSTASH_INTERNAL_PASSWORD:-} + networks: + - elk + depends_on: + - elasticsearch + + kibana: + build: + context: kibana/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + volumes: + - ./kibana/config/kibana.yml:/usr/share/kibana/config/kibana.yml:ro,Z + ports: + - "5601:5601" + environment: + KIBANA_SYSTEM_PASSWORD: ${KIBANA_SYSTEM_PASSWORD:-} + networks: + - elk + depends_on: + - elasticsearch + +networks: + elk: + driver: bridge + +volumes: + setup: + elasticsearch: diff --git a/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/Dockerfile new file mode 100644 index 0000000..22528c6 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/Dockerfile @@ -0,0 +1,7 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION} + +# Add your elasticsearch plugins setup here +# Example: RUN elasticsearch-plugin install analysis-icu diff --git a/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/config/elasticsearch.yml b/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/config/elasticsearch.yml new file mode 100644 index 0000000..3e82379 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/elasticsearch/config/elasticsearch.yml @@ -0,0 +1,12 @@ +--- +## Default Elasticsearch configuration from Elasticsearch base image. +## https://github.com/elastic/elasticsearch/blob/master/distribution/docker/src/docker/config/elasticsearch.yml +# +cluster.name: "docker-cluster" +network.host: 0.0.0.0 + +## X-Pack settings +## see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-settings.html +# +xpack.license.self_generated.type: trial +xpack.security.enabled: true diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/README.md b/2022/tr/Days/Monitoring/Elastic Stack/extensions/README.md new file mode 100644 index 0000000..50016fb --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/README.md @@ -0,0 +1,3 @@ +# Extensions + +Third-party extensions that enable extra integrations with the Elastic stack. diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/Dockerfile new file mode 100644 index 0000000..9f03f56 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/Dockerfile @@ -0,0 +1,3 @@ +ARG ELASTIC_VERSION + +FROM docker.elastic.co/apm/apm-server:${ELASTIC_VERSION} diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/README.md b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/README.md new file mode 100644 index 0000000..ef4f34e --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/README.md @@ -0,0 +1,56 @@ +# APM Server extension + +The APM Server receives data from APM agents and transforms them into Elasticsearch documents that can be visualised in +Kibana. + +## Usage + +To include APM Server in the stack, run Docker Compose from the root of the repository with an additional command line +argument referencing the `apm-server-compose.yml` file: + +```console +$ docker-compose -f docker-compose.yml -f extensions/apm-server/apm-server-compose.yml up +``` + +Meanwhile, you can navigate to the **APM** application in Kibana and follow the setup instructions to get started. + +## Connecting an agent to APM Server + +The most basic configuration to send traces to APM server is to specify the `SERVICE_NAME` and `SERVICE_URL`. Here is an +example Python Flask configuration: + +```python +import elasticapm +from elasticapm.contrib.flask import ElasticAPM + +from flask import Flask + +app = Flask(__name__) +app.config['ELASTIC_APM'] = { + # Set required service name. Allowed characters: + # a-z, A-Z, 0-9, -, _, and space + 'SERVICE_NAME': 'PYTHON_FLASK_TEST_APP', + + # Set custom APM Server URL (default: http://localhost:8200) + 'SERVER_URL': 'http://apm-server:8200', + + 'DEBUG': True, +} +``` + +Configuration settings for each supported language are available in the APM documentation: [APM Agents][apm-agents]. + +## Checking connectivity and importing default APM dashboards + +1. On the Kibana home page, click `Add APM` under the _Observability_ panel. +1. Click `Check APM Server status` to confirm the server is up and running. +1. Click `Check agent status` to verify your agent has registered properly. +1. Click `Load Kibana objects` to create an index pattern for APM. +1. Click `Launch APM` to be taken to the APM dashboard. + +## See also + +[Running APM Server on Docker][apm-docker] + +[apm-agents]: https://www.elastic.co/guide/en/apm/guide/current/components.html +[apm-docker]: https://www.elastic.co/guide/en/apm/guide/current/running-on-docker.html diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/apm-server-compose.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/apm-server-compose.yml new file mode 100644 index 0000000..9d5d2b1 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/apm-server-compose.yml @@ -0,0 +1,22 @@ +version: '3.7' + +services: + apm-server: + build: + context: extensions/apm-server/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + command: + # Disable strict permission checking on 'apm-server.yml' configuration file + # https://www.elastic.co/guide/en/beats/libbeat/current/config-file-permissions.html + - --strict.perms=false + volumes: + - ./extensions/apm-server/config/apm-server.yml:/usr/share/apm-server/apm-server.yml:ro,Z + ports: + - '8200:8200' + environment: + ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} + networks: + - elk + depends_on: + - elasticsearch diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/config/apm-server.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/config/apm-server.yml new file mode 100644 index 0000000..71e2ea9 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/apm-server/config/apm-server.yml @@ -0,0 +1,8 @@ +apm-server: + host: 0.0.0.0:8200 + +output: + elasticsearch: + hosts: ['http://elasticsearch:9200'] + username: elastic + password: ${ELASTIC_PASSWORD} diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/Dockerfile new file mode 100644 index 0000000..3a986e6 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/Dockerfile @@ -0,0 +1,17 @@ +FROM bitnami/elasticsearch-curator:5.8.1 + +USER root + +RUN install_packages cron && \ + echo \ + '* * * * *' \ + root \ + LC_ALL=C.UTF-8 LANG=C.UTF-8 \ + /opt/bitnami/python/bin/curator \ + --config=/usr/share/curator/config/curator.yml \ + /usr/share/curator/config/delete_log_files_curator.yml \ + '>/proc/1/fd/1' '2>/proc/1/fd/2' \ + >>/etc/crontab + +ENTRYPOINT ["cron"] +.md["-f", "-L8"] diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/README.md b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/README.md new file mode 100644 index 0000000..5c38786 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/README.md @@ -0,0 +1,20 @@ +# Curator + +Elasticsearch Curator helps you curate or manage your indices. + +## Usage + +If you want to include the Curator extension, run Docker Compose from the root of the repository with an additional +command line argument referencing the `curator-compose.yml` file: + +```bash +$ docker-compose -f docker-compose.yml -f extensions/curator/curator-compose.yml up +``` + +This sample setup demonstrates how to run `curator` every minute using `cron`. + +All configuration files are available in the `config/` directory. + +## Documentation + +[Curator Reference](https://www.elastic.co/guide/en/elasticsearch/client/curator/current/index.html) diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/config/curator.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/config/curator.yml new file mode 100644 index 0000000..f4cf8de --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/config/curator.yml @@ -0,0 +1,12 @@ +# Curator configuration +# https://www.elastic.co/guide/en/elasticsearch/client/curator/current/configfile.html + +client: + hosts: + - elasticsearch + port: 9200 + http_auth: 'elastic:changeme' + +logging: + loglevel: INFO + logformat: default diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/config/delete_log_files_curator.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/config/delete_log_files_curator.yml new file mode 100644 index 0000000..779c67a --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/config/delete_log_files_curator.yml @@ -0,0 +1,21 @@ +actions: + 1: + action: delete_indices + description: >- + Delete indices. Find which to delete by first limiting the list to + logstash- prefixed indices. Then further filter those to prevent deletion + of anything less than the number of days specified by unit_count. + Ignore the error if the filter does not result in an actionable list of + indices (ignore_empty_list) and exit cleanly. + options: + ignore_empty_list: True + disable_action: False + filters: + - filtertype: pattern + kind: prefix + value: logstash- + - filtertype: age + source: creation_date + direction: older + unit: days + unit_count: 2 diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/curator-compose.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/curator-compose.yml new file mode 100644 index 0000000..488cd80 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/curator/curator-compose.yml @@ -0,0 +1,14 @@ +version: '3.7' + +services: + curator: + build: + context: extensions/curator/ + init: true + volumes: + - ./extensions/curator/config/curator.yml:/usr/share/curator/config/curator.yml:ro,Z + - ./extensions/curator/config/delete_log_files_curator.yml:/usr/share/curator/config/delete_log_files_curator.yml:ro,Z + networks: + - elk + depends_on: + - elasticsearch diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/Dockerfile new file mode 100644 index 0000000..4f0752e --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/Dockerfile @@ -0,0 +1,4 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/enterprise-search/enterprise-search:${ELASTIC_VERSION} diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/README.md b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/README.md new file mode 100644 index 0000000..71fd789 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/README.md @@ -0,0 +1,147 @@ +# Enterprise Search extension + +Elastic Enterprise Search is a suite of products for search applications backed by the Elastic Stack. + +## Requirements + +* 2 GB of free RAM, on top of the resources required by the other stack components and extensions. + +Enterprise Search exposes the TCP port `3002` for its Web UI and API. + +## Usage + +### Generate an encryption key + +Enterprise Search requires one or more [encryption keys][enterprisesearch-encryption] to be configured before the +initial startup. Failing to do so prevents the server from starting. + +Encryption keys can contain any series of characters. Elastic recommends using 256-bit keys for optimal security. + +Those encryption keys must be added manually to the [`config/enterprise-search.yml`][config-enterprisesearch] file. By +default, the list of encryption keys is empty and must be populated using one of the following formats: + +```yaml +secret_management.encryption_keys: + - my_first_encryption_key + - my_second_encryption_key + - ... +``` + +```yaml +secret_management.encryption_keys: [my_first_encryption_key, my_second_encryption_key, ...] +``` + +> :information_source: To generate a strong encryption key, for example using the AES-256 cipher, you can use the +> OpenSSL utility or any other online/offline tool of your choice: +> +> ```console +> $ openssl enc -aes-256 -P +> +> enter aes-256-cbc encryption password: +> Verifying - enter aes-256-cbc encryption password: +> ... +> +> key= +> ``` + +### Enable Elasticsearch's API key service + +Enterprise Search requires Elasticsearch's built-in [API key service][es-security] to be enabled in order to start. +Unless Elasticsearch is configured to enable TLS on the HTTP interface (disabled by default), this service is disabled +by default. + +To enable it, modify the Elasticsearch configuration file in [`elasticsearch/config/elasticsearch.yml`][config-es] and +add the following setting: + +```yaml +xpack.security.authc.api_key.enabled: true +``` + +### Configure the Enterprise Search host in Kibana + +Kibana acts as the [management interface][enterprisesearch-ui] to Enterprise Search. + +To enable the management experience for Enterprise Search, modify the Kibana configuration file in +[`kibana/config/kibana.yml`][config-kbn] and add the following setting: + +```yaml +enterpriseSearch.host: http://enterprise-search:3002 +``` + +### Start the server + +To include Enterprise Search in the stack, run Docker Compose from the root of the repository with an additional command +line argument referencing the `enterprise-search-compose.yml` file: + +```console +$ docker-compose -f docker-compose.yml -f extensions/enterprise-search/enterprise-search-compose.yml up +``` + +Allow a few minutes for the stack to start, then open your web browser at the address to see the +Enterprise Search home page. + +Enterprise Search is configured on first boot with the following default credentials: + +* user: *enterprise_search* +* password: *changeme* + +## Security + +The Enterprise Search password is defined inside the Compose file via the `ENT_SEARCH_DEFAULT_PASSWORD` environment +variable. We highly recommend choosing a more secure password than the default one for security reasons. + +To do so, change the value `ENT_SEARCH_DEFAULT_PASSWORD` environment variable inside the Compose file **before the first +boot**: + +```yaml +enterprise-search: + + environment: + ENT_SEARCH_DEFAULT_PASSWORD: {{some strong password}} +``` + +> :warning: The default Enterprise Search password can only be set during the initial boot. Once the password is +> persisted in Elasticsearch, it can only be changed via the Elasticsearch API. + +For more information, please refer to [User Management and Security][enterprisesearch-security]. + +## Configuring Enterprise Search + +The Enterprise Search configuration is stored in [`config/enterprise-search.yml`][config-enterprisesearch]. You can +modify this file using the [Default Enterprise Search configuration][enterprisesearch-config] as a reference. + +You can also specify the options you want to override by setting environment variables inside the Compose file: + +```yaml +enterprise-search: + + environment: + ent_search.auth.source: standard + worker.threads: '6' +``` + +Any change to the Enterprise Search configuration requires a restart of the Enterprise Search container: + +```console +$ docker-compose -f docker-compose.yml -f extensions/enterprise-search/enterprise-search-compose.yml restart enterprise-search +``` + +Please refer to the following documentation page for more details about how to configure Enterprise Search inside a +Docker container: [Running Enterprise Search Using Docker][enterprisesearch-docker]. + +## See also + +[Enterprise Search documentation][enterprisesearch-docs] + +[config-enterprisesearch]: ./config/enterprise-search.yml + +[enterprisesearch-encryption]: https://www.elastic.co/guide/en/enterprise-search/current/encryption-keys.html +[enterprisesearch-security]: https://www.elastic.co/guide/en/workplace-search/current/workplace-search-security.html +[enterprisesearch-config]: https://www.elastic.co/guide/en/enterprise-search/current/configuration.html +[enterprisesearch-docker]: https://www.elastic.co/guide/en/enterprise-search/current/docker.html +[enterprisesearch-docs]: https://www.elastic.co/guide/en/enterprise-search/current/index.html +[enterprisesearch-ui]: https://www.elastic.co/guide/en/enterprise-search/current/user-interfaces.html + +[es-security]: https://www.elastic.co/guide/en/elasticsearch/reference/current/security-settings.html#api-key-service-settings +[config-es]: ../../elasticsearch/config/elasticsearch.yml +[config-kbn]: ../../kibana/config/kibana.yml diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/config/enterprise-search.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/config/enterprise-search.yml new file mode 100644 index 0000000..40bb592 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/config/enterprise-search.yml @@ -0,0 +1,28 @@ +--- +## Enterprise Search core configuration +## https://www.elastic.co/guide/en/enterprise-search/current/configuration.html +# + +## --------------------- REQUIRED --------------------- + +# Encryption keys to protect application secrets. +secret_management.encryption_keys: + # add encryption keys below + #- add encryption keys here + +## ---------------------------------------------------- + +# IP address Enterprise Search listens on +ent_search.listen_host: 0.0.0.0 + +# URL at which users reach Enterprise Search / Kibana +ent_search.external_url: http://localhost:3002 +kibana.host: http://localhost:5601 + +# Elasticsearch URL and credentials +elasticsearch.host: http://elasticsearch:9200 +elasticsearch.username: elastic +elasticsearch.password: ${ELASTIC_PASSWORD} + +# Allow Enterprise Search to modify Elasticsearch settings. Used to enable auto-creation of Elasticsearch indexes. +allow_es_settings_modification: true diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/enterprise-search-compose.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/enterprise-search-compose.yml new file mode 100644 index 0000000..f6df917 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/enterprise-search/enterprise-search-compose.yml @@ -0,0 +1,20 @@ +version: '3.7' + +services: + enterprise-search: + build: + context: extensions/enterprise-search/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + volumes: + - ./extensions/enterprise-search/config/enterprise-search.yml:/usr/share/enterprise-search/config/enterprise-search.yml:ro,Z + environment: + JAVA_OPTS: -Xmx2g -Xms2g + ENT_SEARCH_DEFAULT_PASSWORD: 'changeme' + ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} + ports: + - '3002:3002' + networks: + - elk + depends_on: + - elasticsearch diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/Dockerfile new file mode 100644 index 0000000..b8dd5f3 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/Dockerfile @@ -0,0 +1,3 @@ +ARG ELASTIC_VERSION + +FROM docker.elastic.co/beats/filebeat:${ELASTIC_VERSION} diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/README.md b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/README.md new file mode 100644 index 0000000..43c5d67 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/README.md @@ -0,0 +1,36 @@ +# Filebeat + +Filebeat is a lightweight shipper for forwarding and centralizing log data. Installed as an agent on your servers, +Filebeat monitors the log files or locations that you specify, collects log events, and forwards them either to +Elasticsearch or Logstash for indexing. + +## Usage + +To include Filebeat in the stack, run Docker Compose from the root of the repository with an additional command line +argument referencing the `filebeat-compose.yml` file: + +```console +$ docker-compose -f docker-compose.yml -f extensions/filebeat/filebeat-compose.yml up +``` + +## Configuring Filebeat + +The Filebeat configuration is stored in [`config/filebeat.yml`](./config/filebeat.yml). You can modify this file with +the help of the [Configuration reference][filebeat-config]. + +Any change to the Filebeat configuration requires a restart of the Filebeat container: + +```console +$ docker-compose -f docker-compose.yml -f extensions/filebeat/filebeat-compose.yml restart filebeat +``` + +Please refer to the following documentation page for more details about how to configure Filebeat inside a Docker +container: [Run Filebeat on Docker][filebeat-docker]. + +## See also + +[Filebeat documentation][filebeat-doc] + +[filebeat-config]: https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-reference-yml.html +[filebeat-docker]: https://www.elastic.co/guide/en/beats/filebeat/current/running-on-docker.html +[filebeat-doc]: https://www.elastic.co/guide/en/beats/filebeat/current/index.html diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/config/filebeat.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/config/filebeat.yml new file mode 100644 index 0000000..dfbd0c3 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/config/filebeat.yml @@ -0,0 +1,30 @@ +## Filebeat configuration +## https://github.com/elastic/beats/blob/master/deploy/docker/filebeat.docker.yml +# + +filebeat.config: + modules: + path: ${path.config}/modules.d/*.yml + reload.enabled: false + +filebeat.autodiscover: + providers: + # The Docker autodiscover provider automatically retrieves logs from Docker + # containers as they start and stop. + - type: docker + hints.enabled: true + +processors: + - add_cloud_metadata: ~ + +output.elasticsearch: + hosts: ['http://elasticsearch:9200'] + username: elastic + password: ${ELASTIC_PASSWORD} + +## HTTP endpoint for health checking +## https://www.elastic.co/guide/en/beats/filebeat/current/http-endpoint.html +# + +http.enabled: true +http.host: 0.0.0.0 diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/filebeat-compose.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/filebeat-compose.yml new file mode 100644 index 0000000..04ff104 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/filebeat/filebeat-compose.yml @@ -0,0 +1,34 @@ +version: '3.7' + +services: + filebeat: + build: + context: extensions/filebeat/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + # Run as 'root' instead of 'filebeat' (uid 1000) to allow reading + # 'docker.sock' and the host's filesystem. + user: root + command: + # Log to stderr. + - -e + # Disable config file permissions checks. Allows mounting + # 'config/filebeat.yml' even if it's not owned by root. + # see: https://www.elastic.co/guide/en/beats/libbeat/current/config-file-permissions.html + - --strict.perms=false + volumes: + - ./extensions/filebeat/config/filebeat.yml:/usr/share/filebeat/filebeat.yml:ro,Z + - type: bind + source: /var/lib/docker/containers + target: /var/lib/docker/containers + read_only: true + - type: bind + source: /var/run/docker.sock + target: /var/run/docker.sock + read_only: true + environment: + ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} + networks: + - elk + depends_on: + - elasticsearch diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/Dockerfile new file mode 100644 index 0000000..9591df5 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/Dockerfile @@ -0,0 +1,5 @@ +# uses ONBUILD instructions described here: +# https://github.com/gliderlabs/logspout/tree/master/custom + +FROM gliderlabs/logspout:master +ENV SYSLOG_FORMAT rfc3164 diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/README.md b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/README.md new file mode 100644 index 0000000..f6a4d2b --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/README.md @@ -0,0 +1,28 @@ +# Logspout extension + +Logspout collects all Docker logs using the Docker logs API, and forwards them to Logstash without any additional +configuration. + +## Usage + +If you want to include the Logspout extension, run Docker Compose from the root of the repository with an additional +command line argument referencing the `logspout-compose.yml` file: + +```bash +$ docker-compose -f docker-compose.yml -f extensions/logspout/logspout-compose.yml up +``` + +In your Logstash pipeline configuration, enable the `udp` input and set the input codec to `json`: + +```logstash +input { + udp { + port => 5000 + codec => json + } +} +``` + +## Documentation + + diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/build.sh b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/build.sh new file mode 100644 index 0000000..c3ff938 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/build.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +# source: https://github.com/gliderlabs/logspout/blob/621524e/custom/build.sh + +set -e +apk add --update go build-base git mercurial ca-certificates +cd /src +go build -ldflags "-X main.Version=$1" -o /bin/logspout +apk del go git mercurial build-base +rm -rf /root/go /var/cache/apk/* + +# backwards compatibility +ln -fs /tmp/docker.sock /var/run/docker.sock diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/logspout-compose.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/logspout-compose.yml new file mode 100644 index 0000000..a603c3f --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/logspout-compose.yml @@ -0,0 +1,19 @@ +version: '3.7' + +services: + logspout: + build: + context: extensions/logspout + volumes: + - type: bind + source: /var/run/docker.sock + target: /var/run/docker.sock + read_only: true + environment: + ROUTE_URIS: logstash://logstash:5000 + LOGSTASH_TAGS: docker-elk + networks: + - elk + depends_on: + - logstash + restart: on-failure diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/modules.go b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/modules.go new file mode 100644 index 0000000..f1a2258 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/logspout/modules.go @@ -0,0 +1,10 @@ +package main + +// installs the Logstash adapter for Logspout, and required dependencies +// https://github.com/looplab/logspout-logstash +import ( + _ "github.com/gliderlabs/logspout/healthcheck" + _ "github.com/gliderlabs/logspout/transports/tcp" + _ "github.com/gliderlabs/logspout/transports/udp" + _ "github.com/looplab/logspout-logstash" +) diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/Dockerfile new file mode 100644 index 0000000..6d05bf5 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/Dockerfile @@ -0,0 +1,3 @@ +ARG ELASTIC_VERSION + +FROM docker.elastic.co/beats/metricbeat:${ELASTIC_VERSION} diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/README.md b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/README.md new file mode 100644 index 0000000..4da282a --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/README.md @@ -0,0 +1,36 @@ +# Metricbeat + +Metricbeat is a lightweight shipper that you can install on your servers to periodically collect metrics from the +operating system and from services running on the server. Metricbeat takes the metrics and statistics that it collects +and ships them to the output that you specify, such as Elasticsearch or Logstash. + +## Usage + +To include Metricbeat in the stack, run Docker Compose from the root of the repository with an additional command line +argument referencing the `metricbeat-compose.yml` file: + +```console +$ docker-compose -f docker-compose.yml -f extensions/metricbeat/metricbeat-compose.yml up +``` + +## Configuring Metricbeat + +The Metricbeat configuration is stored in [`config/metricbeat.yml`](./config/metricbeat.yml). You can modify this file +with the help of the [Configuration reference][metricbeat-config]. + +Any change to the Metricbeat configuration requires a restart of the Metricbeat container: + +```console +$ docker-compose -f docker-compose.yml -f extensions/metricbeat/metricbeat-compose.yml restart metricbeat +``` + +Please refer to the following documentation page for more details about how to configure Metricbeat inside a +Docker container: [Run Metricbeat on Docker][metricbeat-docker]. + +## See also + +[Metricbeat documentation][metricbeat-doc] + +[metricbeat-config]: https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-reference-yml.html +[metricbeat-docker]: https://www.elastic.co/guide/en/beats/metricbeat/current/running-on-docker.html +[metricbeat-doc]: https://www.elastic.co/guide/en/beats/metricbeat/current/index.html diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/config/metricbeat.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/config/metricbeat.yml new file mode 100644 index 0000000..f7c07ca --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/config/metricbeat.yml @@ -0,0 +1,44 @@ +## Metricbeat configuration +## https://github.com/elastic/beats/blob/master/deploy/docker/metricbeat.docker.yml +# + +metricbeat.config: + modules: + path: ${path.config}/modules.d/*.yml + # Reload module configs as they change: + reload.enabled: false + +metricbeat.autodiscover: + providers: + - type: docker + hints.enabled: true + +metricbeat.modules: +- module: docker + metricsets: + - container + - cpu + - diskio + - healthcheck + - info + #- image + - memory + - network + hosts: ['unix:///var/run/docker.sock'] + period: 10s + enabled: true + +processors: + - add_cloud_metadata: ~ + +output.elasticsearch: + hosts: ['http://elasticsearch:9200'] + username: elastic + password: ${ELASTIC_PASSWORD} + +## HTTP endpoint for health checking +## https://www.elastic.co/guide/en/beats/metricbeat/current/http-endpoint.html +# + +http.enabled: true +http.host: 0.0.0.0 diff --git a/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/metricbeat-compose.yml b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/metricbeat-compose.yml new file mode 100644 index 0000000..da62833 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/extensions/metricbeat/metricbeat-compose.yml @@ -0,0 +1,45 @@ +version: '3.7' + +services: + metricbeat: + build: + context: extensions/metricbeat/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + # Run as 'root' instead of 'metricbeat' (uid 1000) to allow reading + # 'docker.sock' and the host's filesystem. + user: root + command: + # Log to stderr. + - -e + # Disable config file permissions checks. Allows mounting + # 'config/metricbeat.yml' even if it's not owned by root. + # see: https://www.elastic.co/guide/en/beats/libbeat/current/config-file-permissions.html + - --strict.perms=false + # Mount point of the host’s filesystem. Required to monitor the host + # from within a container. + - --system.hostfs=/hostfs + volumes: + - ./extensions/metricbeat/config/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml:ro,Z + - type: bind + source: / + target: /hostfs + read_only: true + - type: bind + source: /sys/fs/cgroup + target: /hostfs/sys/fs/cgroup + read_only: true + - type: bind + source: /proc + target: /hostfs/proc + read_only: true + - type: bind + source: /var/run/docker.sock + target: /var/run/docker.sock + read_only: true + environment: + ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} + networks: + - elk + depends_on: + - elasticsearch diff --git a/2022/tr/Days/Monitoring/Elastic Stack/kibana/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/kibana/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/kibana/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/kibana/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/kibana/Dockerfile new file mode 100644 index 0000000..9a075be --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/kibana/Dockerfile @@ -0,0 +1,7 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION} + +# Add your kibana plugins setup here +# Example: RUN kibana-plugin install diff --git a/2022/tr/Days/Monitoring/Elastic Stack/kibana/config/kibana.yml b/2022/tr/Days/Monitoring/Elastic Stack/kibana/config/kibana.yml new file mode 100644 index 0000000..07ab33e --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/kibana/config/kibana.yml @@ -0,0 +1,13 @@ +--- +## Default Kibana configuration from Kibana base image. +## https://github.com/elastic/kibana/blob/master/src/dev/build/tasks/os_packages/docker_generator/templates/kibana_yml.template.ts +# +server.name: kibana +server.host: 0.0.0.0 +elasticsearch.hosts: [ "http://elasticsearch:9200" ] +monitoring.ui.container.elasticsearch.enabled: true + +## X-Pack security credentials +# +elasticsearch.username: kibana_system +elasticsearch.password: ${KIBANA_SYSTEM_PASSWORD} diff --git a/2022/tr/Days/Monitoring/Elastic Stack/logstash/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/logstash/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/logstash/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/2022/tr/Days/Monitoring/Elastic Stack/logstash/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/logstash/Dockerfile new file mode 100644 index 0000000..bde5808 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/logstash/Dockerfile @@ -0,0 +1,7 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION} + +# Add your logstash plugins setup here +# Example: RUN logstash-plugin install logstash-filter-json diff --git a/2022/tr/Days/Monitoring/Elastic Stack/logstash/config/logstash.yml b/2022/tr/Days/Monitoring/Elastic Stack/logstash/config/logstash.yml new file mode 100644 index 0000000..47722ea --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/logstash/config/logstash.yml @@ -0,0 +1,5 @@ +--- +## Default Logstash configuration from Logstash base image. +## https://github.com/elastic/logstash/blob/master/docker/data/logstash/config/logstash-full.yml +# +http.host: "0.0.0.0" diff --git a/2022/tr/Days/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf b/2022/tr/Days/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf new file mode 100644 index 0000000..b61029b --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf @@ -0,0 +1,19 @@ +input { + beats { + port => 5044 + } + + tcp { + port => 5000 + } +} + +## Add your filters / logstash plugins configuration here + +output { + elasticsearch { + hosts => "elasticsearch:9200" + user => "logstash_internal" + password => "${LOGSTASH_INTERNAL_PASSWORD}" + } +} diff --git a/2022/tr/Days/Monitoring/Elastic Stack/setup/.dockerignore b/2022/tr/Days/Monitoring/Elastic Stack/setup/.dockerignore new file mode 100644 index 0000000..02f2244 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/setup/.dockerignore @@ -0,0 +1,12 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store + +# Ignore Git files +.gitignore + +# Ignore setup state +state/ diff --git a/2022/tr/Days/Monitoring/Elastic Stack/setup/.gitignore b/2022/tr/Days/Monitoring/Elastic Stack/setup/.gitignore new file mode 100644 index 0000000..a27475a --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/setup/.gitignore @@ -0,0 +1 @@ +/state/ diff --git a/2022/tr/Days/Monitoring/Elastic Stack/setup/Dockerfile b/2022/tr/Days/Monitoring/Elastic Stack/setup/Dockerfile new file mode 100644 index 0000000..0b2ef90 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/setup/Dockerfile @@ -0,0 +1,17 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION} + +USER root + +COPY . / + +RUN set -eux; \ + mkdir /state; \ + chown elasticsearch /state; \ + chmod +x /entrypoint.sh + +USER elasticsearch:root + +ENTRYPOINT ["/entrypoint.sh"] diff --git a/2022/tr/Days/Monitoring/Elastic Stack/setup/entrypoint.sh b/2022/tr/Days/Monitoring/Elastic Stack/setup/entrypoint.sh new file mode 100644 index 0000000..269bb4f --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/setup/entrypoint.sh @@ -0,0 +1,85 @@ +#!/usr/bin/env bash + +set -eu +set -o pipefail + +source "$(dirname "${BASH_SOURCE[0]}")/helpers.sh" + + +# -------------------------------------------------------- +# Users declarations + +declare -A users_passwords +users_passwords=( + [logstash_internal]="${LOGSTASH_INTERNAL_PASSWORD:-}" + [kibana_system]="${KIBANA_SYSTEM_PASSWORD:-}" +) + +declare -A users_roles +users_roles=( + [logstash_internal]='logstash_writer' +) + +# -------------------------------------------------------- +# Roles declarations + +declare -A roles_files +roles_files=( + [logstash_writer]='logstash_writer.json' +) + +# -------------------------------------------------------- + + +echo "-------- $(date) --------" + +state_file="$(dirname ${BASH_SOURCE[0]})/state/.done" +if [[ -e "$state_file" ]]; then + log "State file exists at '${state_file}', skipping setup" + exit 0 +fi + +log 'Waiting for availability of Elasticsearch' +wait_for_elasticsearch +sublog 'Elasticsearch is running' + +for role in "${!roles_files[@]}"; do + log "Role '$role'" + + declare body_file + body_file="$(dirname "${BASH_SOURCE[0]}")/roles/${roles_files[$role]:-}" + if [[ ! -f "${body_file:-}" ]]; then + sublog "No role body found at '${body_file}', skipping" + continue + fi + + sublog 'Creating/updating' + ensure_role "$role" "$(<"${body_file}")" +done + +for user in "${!users_passwords[@]}"; do + log "User '$user'" + if [[ -z "${users_passwords[$user]:-}" ]]; then + sublog 'No password defined, skipping' + continue + fi + + declare -i user_exists=0 + user_exists="$(check_user_exists "$user")" + + if ((user_exists)); then + sublog 'User exists, setting password' + set_user_password "$user" "${users_passwords[$user]}" + else + if [[ -z "${users_roles[$user]:-}" ]]; then + err ' No role defined, skipping creation' + continue + fi + + sublog 'User does not exist, creating' + create_user "$user" "${users_passwords[$user]}" "${users_roles[$user]}" + fi +done + +mkdir -p "$(dirname "${state_file}")" +touch "$state_file" diff --git a/2022/tr/Days/Monitoring/Elastic Stack/setup/helpers.sh b/2022/tr/Days/Monitoring/Elastic Stack/setup/helpers.sh new file mode 100644 index 0000000..2457372 --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/setup/helpers.sh @@ -0,0 +1,182 @@ +#!/usr/bin/env bash + +# Log a message. +function log { + echo "[+] $1" +} + +# Log a message at a sub-level. +function sublog { + echo " ⠿ $1" +} + +# Log an error. +function err { + echo "[x] $1" >&2 +} + +# Poll the 'elasticsearch' service until it responds with HTTP code 200. +function wait_for_elasticsearch { + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' "http://${elasticsearch_host}:9200/" ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local output + + # retry for max 300s (60*5s) + for _ in $(seq 1 60); do + output="$(curl "${args[@]}" || true)" + if [[ "${output: -3}" -eq 200 ]]; then + result=0 + break + fi + + sleep 5 + done + + if ((result)); then + echo -e "\n${output::-3}" + fi + + return $result +} + +# Verify that the given Elasticsearch user exists. +function check_user_exists { + local username=$1 + + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' + "http://${elasticsearch_host}:9200/_security/user/${username}" + ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local -i exists=0 + local output + + output="$(curl "${args[@]}")" + if [[ "${output: -3}" -eq 200 || "${output: -3}" -eq 404 ]]; then + result=0 + fi + if [[ "${output: -3}" -eq 200 ]]; then + exists=1 + fi + + if ((result)); then + echo -e "\n${output::-3}" + else + echo "$exists" + fi + + return $result +} + +# Set password of a given Elasticsearch user. +function set_user_password { + local username=$1 + local password=$2 + + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' + "http://${elasticsearch_host}:9200/_security/user/${username}/_password" + '-X' 'POST' + '-H' 'Content-Type: application/json' + '-d' "{\"password\" : \"${password}\"}" + ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local output + + output="$(curl "${args[@]}")" + if [[ "${output: -3}" -eq 200 ]]; then + result=0 + fi + + if ((result)); then + echo -e "\n${output::-3}\n" + fi + + return $result +} + +# Create the given Elasticsearch user. +function create_user { + local username=$1 + local password=$2 + local role=$3 + + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' + "http://${elasticsearch_host}:9200/_security/user/${username}" + '-X' 'POST' + '-H' 'Content-Type: application/json' + '-d' "{\"password\":\"${password}\",\"roles\":[\"${role}\"]}" + ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local output + + output="$(curl "${args[@]}")" + if [[ "${output: -3}" -eq 200 ]]; then + result=0 + fi + + if ((result)); then + echo -e "\n${output::-3}\n" + fi + + return $result +} + +# Ensure that the given Elasticsearch role is up-to-date, create it if required. +function ensure_role { + local name=$1 + local body=$2 + + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' + "http://${elasticsearch_host}:9200/_security/role/${name}" + '-X' 'POST' + '-H' 'Content-Type: application/json' + '-d' "$body" + ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local output + + output="$(curl "${args[@]}")" + if [[ "${output: -3}" -eq 200 ]]; then + result=0 + fi + + if ((result)); then + echo -e "\n${output::-3}\n" + fi + + return $result +} diff --git a/2022/tr/Days/Monitoring/Elastic Stack/setup/roles/logstash_writer.json b/2022/tr/Days/Monitoring/Elastic Stack/setup/roles/logstash_writer.json new file mode 100644 index 0000000..b43861f --- /dev/null +++ b/2022/tr/Days/Monitoring/Elastic Stack/setup/roles/logstash_writer.json @@ -0,0 +1,33 @@ +{ + "cluster": [ + "manage_index_templates", + "monitor", + "manage_ilm" + ], + "indices": [ + { + "names": [ + "logs-generic-default", + "logstash-*", + "ecs-logstash-*" + ], + "privileges": [ + "write", + "create", + "create_index", + "manage", + "manage_ilm" + ] + }, + { + "names": [ + "logstash", + "ecs-logstash" + ], + "privileges": [ + "write", + "manage" + ] + } + ] +} diff --git a/2022/tr/Days/Networking/192.168.169.115_20220127_145846 b/2022/tr/Days/Networking/192.168.169.115_20220127_145846 new file mode 100644 index 0000000..76ada05 --- /dev/null +++ b/2022/tr/Days/Networking/192.168.169.115_20220127_145846 @@ -0,0 +1,197 @@ + +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +************************************************************************** +R1>enable +Password: +R1#term len 0 +R1#sh run +Building configuration... + + +Current configuration : 3846 bytes +! +! Last configuration change at 09:18:04 UTC Thu Jan 27 2022 +! +version 15.6 +service timestamps debug datetime msec +service timestamps log datetime msec +no service password-encryption +! +hostname R1 +! +boot-start-marker +boot-end-marker +! +! +enable password access123 +! +aaa new-model +! +! +aaa authentication login default local +aaa authorization exec default local none +! +! +! +! +! +aaa session-id unique +ethernet lmi ce +! +! +! +mmi polling-interval 60 +no mmi auto-configure +no mmi pvc +mmi snmp-timeout 180 +! +! +! +! +! +! +! +! +! +! +! +no ip domain lookup +ip domain name 90DaysOfDevOps.net +ip cef +no ipv6 cef +! +multilink bundle-name authenticated +! +! +! +! +username admin password 0 access123 +! +redundancy +! +lldp run +! +! +! +! +! +! +! +! +! +! +! +! +! +! +interface GigabitEthernet0/0 + ip address 10.10.88.110 255.255.255.0 + duplex auto + speed auto + media-type rj45 +! +interface GigabitEthernet0/1 + no ip address + shutdown + duplex auto + speed auto + media-type rj45 +! +interface GigabitEthernet0/2 + no ip address + shutdown + duplex auto + speed auto + media-type rj45 +! +interface GigabitEthernet0/3 + ip address dhcp + duplex auto + speed auto + media-type rj45 +! +ip forward-protocol nd +! +! +no ip http server +no ip http secure-server +ip ssh version 2 +ip scp server enable +! +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging +! +snmp-server community public RW +snmp-server trap link ietf +snmp-server chassis-id +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager +! +! +! +! +control-plane +! +banner exec ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner incoming ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner login ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +! +line con 0 + exec-timeout 0 0 + privilege level 15 + logging synchronous +line aux 0 +line vty 0 4 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +line vty 5 15 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +! +no scheduler allocate +! +end + +R1# \ No newline at end of file diff --git a/2022/tr/Days/Networking/192.168.169.125_20220127_145846 b/2022/tr/Days/Networking/192.168.169.125_20220127_145846 new file mode 100644 index 0000000..1db869e --- /dev/null +++ b/2022/tr/Days/Networking/192.168.169.125_20220127_145846 @@ -0,0 +1,193 @@ + +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +************************************************************************** +SW3>enable +Password: +SW3#term len 0 +SW3#sh run +Building configuration... + + +Current configuration : 3939 bytes +! +! Last configuration change at 09:22:10 UTC Thu Jan 27 2022 +! +version 15.2 +service timestamps debug datetime msec +service timestamps log datetime msec +no service password-encryption +service compress-config +! +hostname SW3 +! +boot-start-marker +boot-end-marker +! +! +enable password access123 +! +username admin password 0 access123 +aaa new-model +! +! +aaa authentication login default local +aaa authorization exec default local none +! +! +! +! +! +! +aaa session-id unique +! +! +! +! +! +vtp mode transparent +! +! +! +no ip domain-lookup +ip domain-name 90DaysOfDevOps.net +ip cef +no ipv6 cef +! +! +! +spanning-tree mode rapid-pvst +spanning-tree extend system-id +! +vlan internal allocation policy ascending +lldp run +! +! +! +! +! +! +! +! +! +! +! +! +! +! +interface GigabitEthernet0/1 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/2 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/3 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/0 + no switchport + ip address dhcp + negotiation auto +! +interface GigabitEthernet1/0 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/1 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/2 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/3 + media-type rj45 + negotiation auto +! +ip forward-protocol nd +! +no ip http server +no ip http secure-server +! +ip ssh version 2 +ip scp server enable +! +! +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging +! +! +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager +! +! +! +control-plane +! +banner exec ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner incoming ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner login ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +! +line con 0 + exec-timeout 0 0 + privilege level 15 + logging synchronous +line aux 0 +line vty 0 4 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +line vty 5 15 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +! +! +end + +SW3# \ No newline at end of file diff --git a/2022/tr/Days/Networking/192.168.169.178_20220127_145846 b/2022/tr/Days/Networking/192.168.169.178_20220127_145846 new file mode 100644 index 0000000..2c1a71a --- /dev/null +++ b/2022/tr/Days/Networking/192.168.169.178_20220127_145846 @@ -0,0 +1,194 @@ + +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +************************************************************************** +SW1>enable +Password: +SW1#term len 0 +SW1#sh run +Building configuration... + + +Current configuration : 3976 bytes +! +! Last configuration change at 14:04:42 UTC Thu Jan 27 2022 +! +version 15.2 +service timestamps debug datetime msec +service timestamps log datetime msec +no service password-encryption +service compress-config +! +hostname SW1 +! +boot-start-marker +boot-end-marker +! +! +enable password access123 +! +username admin password 0 access123 +aaa new-model +! +! +aaa authentication login default local +aaa authorization exec default local none +! +! +! +! +! +! +aaa session-id unique +! +! +! +! +! +vtp mode transparent +! +! +! +no ip domain-lookup +ip domain-name 90DaysOfDevOps.net +ip cef +no ipv6 cef +! +! +! +spanning-tree mode rapid-pvst +spanning-tree extend system-id +! +vlan internal allocation policy ascending +lldp run +! +! +! +! +! +! +! +! +! +! +! +! +! +! +interface GigabitEthernet0/1 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/2 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/3 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/0 + no switchport + ip address dhcp + negotiation auto +! +interface GigabitEthernet1/0 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/2 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/3 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/1 + no switchport + ip address 10.10.88.111 255.255.255.0 + negotiation auto +! +ip forward-protocol nd +! +no ip http server +no ip http secure-server +! +ip ssh version 2 +ip scp server enable +! +! +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging +! +! +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager +! +! +! +control-plane +! +banner exec ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner incoming ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner login ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +! +line con 0 + exec-timeout 0 0 + privilege level 15 + logging synchronous +line aux 0 +line vty 0 4 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +line vty 5 15 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +! +! +end + +SW1# \ No newline at end of file diff --git a/2022/tr/Days/Networking/192.168.169.193_20220127_145846 b/2022/tr/Days/Networking/192.168.169.193_20220127_145846 new file mode 100644 index 0000000..3149604 --- /dev/null +++ b/2022/tr/Days/Networking/192.168.169.193_20220127_145846 @@ -0,0 +1,199 @@ + +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +************************************************************************** +SW2>enable +Password: +SW2#term len 0 +SW2#sh run +Building configuration... + + +Current configuration : 4140 bytes +! +! Last configuration change at 14:17:13 UTC Thu Jan 27 2022 by admin +! +version 15.2 +service timestamps debug datetime msec +service timestamps log datetime msec +no service password-encryption +service compress-config +! +hostname SW2 +! +boot-start-marker +boot-end-marker +! +! +enable password access123 +! +username admin password 0 access123 +aaa new-model +! +! +aaa authentication login default local +aaa authorization exec default local none +! +! +! +! +! +! +aaa session-id unique +! +! +! +! +! +vtp mode transparent +! +! +! +no ip domain-lookup +ip domain-name 90DaysOfDevOps.net +ip cef +no ipv6 cef +! +! +! +spanning-tree mode rapid-pvst +spanning-tree extend system-id +! +vlan internal allocation policy ascending +lldp run +! +! +! +! +! +! +! +! +! +! +! +! +! +! +interface GigabitEthernet0/1 + switchport trunk allowed vlan 1,2 + switchport trunk encapsulation dot1q + switchport mode trunk + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/2 + switchport trunk allowed vlan 1,2 + switchport trunk encapsulation dot1q + switchport mode trunk + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/3 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/0 + no switchport + ip address dhcp + negotiation auto +! +interface GigabitEthernet1/0 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/1 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/2 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/3 + media-type rj45 + negotiation auto +! +ip forward-protocol nd +! +no ip http server +no ip http secure-server +! +ip ssh version 2 +ip scp server enable +! +! +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging +! +! +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager +! +! +! +control-plane +! +banner exec ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner incoming ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner login ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +! +line con 0 + exec-timeout 0 0 + privilege level 15 + logging synchronous +line aux 0 +line vty 0 4 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +line vty 5 15 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +! +! +end + +SW2# \ No newline at end of file diff --git a/2022/tr/Days/Networking/192.168.169.197_20220127_145846 b/2022/tr/Days/Networking/192.168.169.197_20220127_145846 new file mode 100644 index 0000000..f5c8f22 --- /dev/null +++ b/2022/tr/Days/Networking/192.168.169.197_20220127_145846 @@ -0,0 +1,195 @@ + +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +************************************************************************** +SW4>enable +Password: +SW4#term len 0 +SW4#sh run +Building configuration... + + +Current configuration : 3982 bytes +! +! Last configuration change at 09:22:39 UTC Thu Jan 27 2022 +! +version 15.2 +service timestamps debug datetime msec +service timestamps log datetime msec +no service password-encryption +service compress-config +! +hostname SW4 +! +boot-start-marker +boot-end-marker +! +! +enable password access123 +! +username admin password 0 access123 +aaa new-model +! +! +aaa authentication login default local +aaa authorization exec default local none +! +! +! +! +! +! +aaa session-id unique +! +! +! +! +! +vtp mode transparent +! +! +! +no ip domain-lookup +ip domain-name 90DaysOfDevOps.net +ip cef +no ipv6 cef +! +! +! +spanning-tree mode rapid-pvst +spanning-tree extend system-id +! +vlan internal allocation policy ascending +! +vlan 10,20,30,40,50,60,70,80,90,100,200 +lldp run +! +! +! +! +! +! +! +! +! +! +! +! +! +! +interface GigabitEthernet0/1 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/2 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/3 + media-type rj45 + negotiation auto +! +interface GigabitEthernet0/0 + no switchport + ip address dhcp + negotiation auto +! +interface GigabitEthernet1/0 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/1 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/2 + media-type rj45 + negotiation auto +! +interface GigabitEthernet1/3 + media-type rj45 + negotiation auto +! +ip forward-protocol nd +! +no ip http server +no ip http secure-server +! +ip ssh version 2 +ip scp server enable +! +! +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging +! +! +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager +! +! +! +control-plane +! +banner exec ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner incoming ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +banner login ^C +************************************************************************** +* IOSv is strictly limited to use for evaluation, demonstration and IOS * +* education. IOSv is provided as-is and is not supported by Cisco's * +* Technical Advisory Center. Any use or disclosure, in whole or in part, * +* of the IOSv Software or Documentation to any third party for any * +* purposes is expressly prohibited except as otherwise authorized by * +* Cisco in writing. * +**************************************************************************^C +! +line con 0 + exec-timeout 0 0 + privilege level 15 + logging synchronous +line aux 0 +line vty 0 4 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +line vty 5 15 + exec-timeout 0 0 + privilege level 15 + logging synchronous + transport input all +! +! +end + +SW4# \ No newline at end of file diff --git a/2022/tr/Days/Networking/R1 b/2022/tr/Days/Networking/R1 new file mode 100644 index 0000000..c0b5e80 --- /dev/null +++ b/2022/tr/Days/Networking/R1 @@ -0,0 +1,53 @@ +enable +configure terminal + +hostname R1 +int gig0/0 + no shutdown + ip add 10.10.88.110 255.255.255.0 + +aaa new-model +aaa session-id unique +aaa authentication login default local +aaa authorization exec default local none + +enable password access123 +username admin password access123 +no ip domain-lookup + +lldp run + +ip domain-name 90DaysOfDevOps.net +ip ssh version 2 +ip scp server enable +crypto key generate rsa general-keys modulus 1024 + +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager + +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging +line con 0 + exec-timeout 0 0 + privilege level 15 +logging synchronous + +line vty 0 15 + exec-timeout 0 0 + logging synchronous + login local + transport input all + privilege level 15 + +do copy run start +end \ No newline at end of file diff --git a/2022/tr/Days/Networking/SW1 b/2022/tr/Days/Networking/SW1 new file mode 100644 index 0000000..9d81428 --- /dev/null +++ b/2022/tr/Days/Networking/SW1 @@ -0,0 +1,57 @@ +enable +configure terminal + +hostname SW1 + +aaa new-model +aaa session-id unique +aaa authentication login default local +aaa authorization exec default local none +vtp mode transparent + +int gig0/0 + no switchport + no shut + ip address 10.10.88.111 255.255.255.0 + +lldp run + +enable password access123 +username admin password access123 +no ip domain-lookup + +ip domain-name 90DaysOfDevOps.net +ip ssh version 2 +ip scp server enable +crypto key generate rsa general-keys modulus 1024 + +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager + +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging + +line con 0 +exec-timeout 0 0 +privilege level 15 +logging synchronous + +line vty 0 15 + exec-timeout 0 0 + logging synchronous + login local + transport input all + privilege level 15 + +do copy run start +end \ No newline at end of file diff --git a/2022/tr/Days/Networking/SW2 b/2022/tr/Days/Networking/SW2 new file mode 100644 index 0000000..5eee50f --- /dev/null +++ b/2022/tr/Days/Networking/SW2 @@ -0,0 +1,57 @@ +enable +configure terminal + +hostname SW2 + +aaa new-model +aaa session-id unique +aaa authentication login default local +aaa authorization exec default local none +vtp mode transparent + +int gig0/0 + no switchport + no shut + ip address 10.10.88.112 255.255.255.0 + +lldp run + +enable password access123 +username admin password access123 +no ip domain-lookup + +ip domain-name 90DaysOfDevOps.net +ip ssh version 2 +ip scp server enable +crypto key generate rsa general-keys modulus 1024 + +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager + +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging + +line con 0 +exec-timeout 0 0 +privilege level 15 +logging synchronous + +line vty 0 15 + exec-timeout 0 0 + logging synchronous + login local + transport input all + privilege level 15 + +do copy run start +end \ No newline at end of file diff --git a/2022/tr/Days/Networking/SW3 b/2022/tr/Days/Networking/SW3 new file mode 100644 index 0000000..397ef9b --- /dev/null +++ b/2022/tr/Days/Networking/SW3 @@ -0,0 +1,57 @@ +enable +configure terminal + +hostname SW3 + +aaa new-model +aaa session-id unique +aaa authentication login default local +aaa authorization exec default local none +vtp mode transparent + +int gig0/0 + no switchport + no shut + ip address 10.10.88.113 255.255.255.0 + +lldp run + +enable password access123 +username admin password access123 +no ip domain-lookup + +ip domain-name 90DaysOfDevOps.net +ip ssh version 2 +ip scp server enable +crypto key generate rsa general-keys modulus 1024 + +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager + +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging + +line con 0 +exec-timeout 0 0 +privilege level 15 +logging synchronous + +line vty 0 15 + exec-timeout 0 0 + logging synchronous + login local + transport input all + privilege level 15 + +do copy run start +end \ No newline at end of file diff --git a/2022/tr/Days/Networking/SW4 b/2022/tr/Days/Networking/SW4 new file mode 100644 index 0000000..79b39f3 --- /dev/null +++ b/2022/tr/Days/Networking/SW4 @@ -0,0 +1,58 @@ +enable +configure terminal + +hostname SW4 + +aaa new-model +aaa session-id unique +aaa authentication login default local +aaa authorization exec default local none +vtp mode transparent +vlan 10,20,30,40,50,60,70,80,90,100,200 + +int gig0/0 + no switchport + no shut + ip address 10.10.88.114 255.255.255.0 + +lldp run + +enable password access123 +username admin password access123 +no ip domain-lookup + +ip domain-name 90DaysOfDevOps.net +ip ssh version 2 +ip scp server enable +crypto key generate rsa general-keys modulus 1024 + +snmp-server community public RW +snmp-server trap link ietf +snmp-server enable traps snmp linkdown linkup +snmp-server enable traps syslog +snmp-server manager + +logging history debugging +logging snmp-trap emergencies +logging snmp-trap alerts +logging snmp-trap critical +logging snmp-trap errors +logging snmp-trap warnings +logging snmp-trap notifications +logging snmp-trap informational +logging snmp-trap debugging + +line con 0 +exec-timeout 0 0 +privilege level 15 +logging synchronous + +line vty 0 15 + exec-timeout 0 0 + logging synchronous + login local + transport input all + privilege level 15 + +do copy run start +end \ No newline at end of file diff --git a/2022/tr/Days/Networking/backup.py b/2022/tr/Days/Networking/backup.py new file mode 100644 index 0000000..0db70dc --- /dev/null +++ b/2022/tr/Days/Networking/backup.py @@ -0,0 +1,49 @@ +import sys +import time +import paramiko +import os +import cmd +import datetime + +now = datetime.datetime.now() +dt_string = now.strftime("%d/%m/%Y %H:%M:%S") +print("Your backup has started at", dt_string) +tic = time.perf_counter() + +#user = input("Enter username:") +#password = input("Enter Paswd:") +#enable_password = input("Enter enable pswd:") +user = "admin" +password = "access123" +enable_password = "access123" + +port=22 +f0 = open('backup.txt') +for ip in f0.readlines(): + ip = ip.strip() + filename_prefix ='/Users/shambhu/Documents' + ip + ssh = paramiko.SSHClient() + ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + ssh.connect(ip,port, user, password, look_for_keys=False) + chan = ssh.invoke_shell() + time.sleep(2) + chan.send('enable\n') + chan.send(enable_password +'\n') + time.sleep(1) + chan.send('term len 0\n') + time.sleep(1) + chan.send('sh run\n') + time.sleep(20) + output = chan.recv(999999) + filename = "%s_%.2i%.2i%i_%.2i%.2i%.2i" % (ip,now.year,now.month,now.day,now.hour,now.minute,now.second) + f1 = open(filename, 'a') + f1.write(output.decode("utf-8") ) + f1.close() + ssh.close() + f0.close() +toc = time.perf_counter() +print("Congratulations You Have Backed Up Your 90DaysOfDevOps Lab") +print(f"Your backup duration was {toc - tic:0.4f} seconds") + +dt_string = now.strftime("%d/%m/%Y %H:%M:%S") +print("Your backup completed at", dt_string) diff --git a/2022/tr/Days/Networking/backup.txt b/2022/tr/Days/Networking/backup.txt new file mode 100644 index 0000000..01ce670 --- /dev/null +++ b/2022/tr/Days/Networking/backup.txt @@ -0,0 +1,5 @@ +192.168.169.115 +192.168.169.178 +192.168.169.193 +192.168.169.125 +192.168.169.197 \ No newline at end of file diff --git a/2022/tr/Days/Networking/netmiko_con_multi.py b/2022/tr/Days/Networking/netmiko_con_multi.py new file mode 100644 index 0000000..ead5306 --- /dev/null +++ b/2022/tr/Days/Networking/netmiko_con_multi.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python +from netmiko import ConnectHandler +from getpass import getpass + +#password = getpass() + +R1 = { + "device_type": "cisco_ios", + "host": "192.168.169.115", + "username": "admin", + "password": "access123", +} + +SW1 = { + "device_type": "cisco_ios", + "host": "192.168.169.178", + "username": "admin", + "password": "access123", +} + +SW2 = { + "device_type": "cisco_ios", + "host": "192.168.169.193", + "username": "admin", + "password": "access123", +} + +SW3 = { + "device_type": "cisco_ios", + "host": "192.168.169.125", + "username": "admin", + "password": "access123", +} + +SW4 = { + "device_type": "cisco_ios", + "host": "192.168.169.197", + "username": "admin", + "password": "access123", +} +command = "show ip int brief" +for device in (R1, SW1, SW2, SW3, SW4): + net_connect = ConnectHandler(**device) + print(net_connect.find_prompt()) + print(net_connect.send_command(command)) + net_connect.disconnect() \ No newline at end of file diff --git a/2022/tr/Days/Networking/netmiko_con_multi_vlan.py b/2022/tr/Days/Networking/netmiko_con_multi_vlan.py new file mode 100644 index 0000000..e64a164 --- /dev/null +++ b/2022/tr/Days/Networking/netmiko_con_multi_vlan.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python +from netmiko import ConnectHandler +from getpass import getpass + +#password = getpass() + +SW1 = { + "device_type": "cisco_ios", + "host": "192.168.169.178", + "username": "admin", + "password": "access123", +} + +SW2 = { + "device_type": "cisco_ios", + "host": "192.168.169.193", + "username": "admin", + "password": "access123", +} + +SW3 = { + "device_type": "cisco_ios", + "host": "192.168.169.125", + "username": "admin", + "password": "access123", +} + +SW4 = { + "device_type": "cisco_ios", + "host": "192.168.169.197", + "username": "admin", + "password": "access123", +} +command = "show int trunk" +for device in (SW1, SW2, SW3, SW4): + net_connect = ConnectHandler(**device) + print(net_connect.find_prompt()) + print(net_connect.send_command(command)) + net_connect.disconnect() \ No newline at end of file diff --git a/2022/tr/Days/Networking/netmiko_sendchange.py b/2022/tr/Days/Networking/netmiko_sendchange.py new file mode 100644 index 0000000..cfb5448 --- /dev/null +++ b/2022/tr/Days/Networking/netmiko_sendchange.py @@ -0,0 +1,19 @@ +from netmiko import ConnectHandler + +SW2 = { + "device_type": "cisco_ios", + "host": "192.168.169.193", + "username": "admin", + "password": "access123", + "secret": "access123", +} + +core_sw_config = ["int range gig0/1 - 2", "switchport trunk encapsulation dot1q", + "switchport mode trunk", "switchport trunk allowed vlan 1,2"] + +print("########## Connecting to Device {0} ############".format(SW2)) +net_connect = ConnectHandler(**SW2) +net_connect.enable() + +print("***** Sending Configuration to Device *****") +net_connect.send_config_set(core_sw_config) diff --git a/2022/tr/Days/Networking/paramiko_show.py b/2022/tr/Days/Networking/paramiko_show.py new file mode 100644 index 0000000..63dba74 --- /dev/null +++ b/2022/tr/Days/Networking/paramiko_show.py @@ -0,0 +1,22 @@ +#!/usr/bin/python + +import paramiko +import time + +Channel = paramiko.SSHClient() + +Channel.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +Channel.connect(hostname="192.168.169.115", username='admin', password='access123', look_for_keys=False, allow_agent=False) + +shell = Channel.invoke_shell() # This will set interactive shell +shell.send("enable\n") +shell.send("access123\n") +shell.send("terminal length 0\n") +shell.send("show ip int b\n") +shell.send("show arp \n") +time.sleep(2) + +print(shell.recv(5000)) +# This will receive everything from the buffer, if you need to receive specifc output, the you should execute the command +# and immediately receive the output before executing the 2nd command, Also you should sleep a little +Channel.close() \ No newline at end of file diff --git a/2022/tr/Days/day01.md b/2022/tr/Days/day01.md new file mode 100644 index 0000000..bbd76ce --- /dev/null +++ b/2022/tr/Days/day01.md @@ -0,0 +1,55 @@ +## Giris - Gun 1 + +90 günlük maceramıza hoş geldiniz! Bu süre zarfında DevOps'un temel anlayışını öğrenmek ve birçok DevOps aracını keşfetmek için çıkıyoruz. + +Bu öğrenme yolculuğu yıllar önce yazar [Michael Cade](https://github.com/MichaelCade) için başladı. Başlangıçta, sanallaştırma platformları ve bulut tabanlı teknolojilere odaklansa da, özellikle Altyapıyı Kodlama (IaC) ve Terraform ve Chef ile uygulama yapılandırma yönetimi konularına ilgi duyuyordu. + +2021 yılında, Kasten by Veeam'da Cloud Native stratejisine odaklanma fırsatını elde etti. Bu fırsat, Kubernetes ve DevOps ile ilgili büyük bir odaklanma ve bu teknolojileri çevreleyen toplulukla etkileşim kurma fırsatı sunuyordu. Öğrenme yolculuğuna başladı ve hızla Kubernetes ve konteynerleme temellerini öğrenmekten daha geniş bir dünyanın olduğunu fark etti. Bunun üzerine toplulukla iletişime geçmeye ve DevOps kültürü, araçları ve süreçleri hakkında daha fazla bilgi edinmeye başladı. Bu süreçte öğrendiklerini halka açık bir şekilde belgelemeye başladı. + + +[Öyleyse DevOps öğrenmek istiyor musun?](https://blog.kasten.io/devops-learning-curve) + +## Yolculuk Başlasın + +Onceki blog yazısını okuduğunuzda, bu içeriğin öğrenme yolculuğu için yüksek seviyeli bir içerik olduğunu ve yazarın hiçbir bölümde uzman olmadığını göreceksiniz. Ancak amacının, her iki durumu da dikkate alarak ücretsiz ve bazı ücretli kaynakları paylaşmak olduğunu belirtmek istedi. Çünkü hepimizin farklı koşulları olduğunu unutmamak önemlidir. + +Gelecek 90 gün boyunca, bu kaynakların belgelerini takip edebilir ve bu temel alanları kapsayabilirsiniz. Toplumun da bu sürece dahil olması harika olurdu. Yolculuğunuzu ve kaynaklarınızı paylaşarak hep birlikte kamuya açık bir şekilde öğrenelim ve birbirimize yardımcı olalım: [Repo original](https://github.com/MichaelCade/90DaysOfDevOps). + +Projenin depo başlangıç [README](../README.md) dosyasında, her alanın toplamda 12 hafta ve 6 gün boyunca bölümlere ayrıldığını göreceksiniz. İlk 6 gün boyunca, öncelikle genel olarak DevOps temellerini keşfedeceksiniz, daha sonra belirli bazı alanlara derinlemesine gireceğiz. Bu liste kesinlikle eksiksiz değildir ve tekrar söylemek gerekirse, topluluğun bu belgeyi daha da geliştirmek için yardımcı olması harika olurdu. + +Bu noktada, DevOps felsefesine ilgi duyan herkes için ilginç bir kaynak daha [DevOps Roadmap](https://roadmap.sh/devops) olabilir. Şu anda bulunduğunuz konumu ve ulaşılması gereken hedefleri akılda canlandırmak için bir göz atmanızı öneririm. + +![DevOps Roadmap 2022](https://gitea.vergaracarmona.es/manuelver/awesome-roadmaps/media/branch/main/img/devops.png) + +Bu, başlamak için harika bir kaynak ve Michael Cade'in başlangıç listesini ve blog girişini oluşturmak için temel aldığı bir kaynaktır. Ayrıca, bu depoda listelenen 12 konunun dışında daha detaylı diğer alanları da görebilirsiniz. + +## İlk Adımlar - DevOps Nedir? + +Burada sıralanabilecek birçok blog yazısı ve YouTube videoları var, ancak 90 günlük bir meydan okuma başlatacağımız için her gün yaklaşık bir saatini yeni bir şeyler öğrenerek DevOps hakkında bilgi edinmeye odaklanacağız. Yine de, başlamak için "DevOps nedir" konusunda bazı yüksek düzey bilgilere sahip olmak uygun olacaktır. + +Öncelikle, **DevOps bir araç değildir**. Satın alınamaz, bir yazılım SKU'su veya indirilebilen bir açık kaynak GitHub deposu değildir. Aynı zamanda bir programlama dili de değildir. Ve tabii ki, bir sihirli karanlık sanat da değildir, ancak bilgisayar bilimi alanında sık sık böyle bir algı oluşmaktadır. + +**DevOps, Yazılım Geliştirme sürecinde işleri daha akıllıca yapmanın bir yoludur.** - Peki... Yazılım geliştiricisi değilseniz, hemen geri adım atıp bu projeye dalış yapmamalı mısınız? Kesinlikle hayır. Kalın... Çünkü DevOps, **yazılım geliştirme ve operasyonları birleştirir**. Daha önce sanal makinelerin tarafında olduğu ve genellikle operasyonların tarafına düştüğü belirtilmişti, ancak topluluk içinde farklı uzmanlık alanlarına sahip insanlar vardır. Kesin olan şey, DevOps'un teknoloji dünyasında herkesin faydalanabileceği, geliştiricilerin, operasyonların veya QA mühendislerinin olabileceği yönünde. Herkes, DevOps'u daha iyi anlamanın sunduğu iyi uygulamaları eşit olarak öğrenebilir. + +DevOps, bir ürünün fikir aşamasından son kullanıcıya, kim olursa olsun (bir iç ekip, müşteriler, topluluk vb.) üretimdeki dağıtım süresini azaltmaya yardımcı olan bir dizi uygulamadır. + +Bu ilk haftada bu yolculuğun üzerinde durduğu bir diğer alan, **Çevik metodoloji** hakkında. DevOps ve Çevik, **Uygulama**nın sürekli teslimini gerçekleştirmek için yaygın olarak birlikte kullanılır. + +Yüksek düzeydeki fikir, bir DevOps zihniyetinin veya kültürünün, uzun ve karmaşık yazılım sürüm süreçlerini azaltarak daha küçük ve daha sık teslim edilebilir sürümler yapma amacıyla çalıştığıdır. Burada anlaşılması gereken başka önemli bir nokta da, önceden bahsedilen geliştirici, operasyon ve QA ekipleri arasındaki engelleri kırmak için bir DevOps mühendisinin sorumluluğudur. + +DevOps perspektifinden, **Geliştirme, Test ve Dağıtım** DevOps felsefesinin yetkinlikleri içerisindedir. + +Bu süreci en etkili ve verimli hale getirmek için ise **Otomasyon** son derece önemlidir. + + +## Kaynaklar + +Michael Cade her zaman öğrenme aracı olarak bu README dosyalarına ek kaynaklar eklemeye açıktır. + +Bu belgeleri tam olarak takip etmek için bugün gördüğümüz konular hakkında genel bir fikir edinmek ve daha fazla derinlemesine araştırma yapabilmek için aşağıdaki videoları izlemeniz en iyisidir: + +- [DevOps in 5 Minutes (ENG)](https://www.youtube.com/watch?v=Xrgk023l4lI) +- [What is DevOps? Easy Way (ENG)](https://www.youtube.com/watch?v=_Gpe1Zn-1fE&t=43s) +- [DevOps roadmap 2022 | Success Roadmap 2022 (ENG)](https://www.youtube.com/watch?v=7l_n97Mt0ko) + +[Gun 2](day02.md)'de görüşmek üzere.. diff --git a/2022/tr/Days/day02.md b/2022/tr/Days/day02.md new file mode 100644 index 0000000..7fe7ca7 --- /dev/null +++ b/2022/tr/Days/day02.md @@ -0,0 +1,61 @@ +## Bir DevOps Mühendisinin Sorumlulukları + +marım buraya 90DaysOfDevOps kaynakları ve yayınları aracılığıyla ulaşmışsınızdır. [Gun 1 #90GunDevOps](day01.md). + +İlk gün DevOps kavramına kısaca değinildi, ancak şimdi daha derinlemesine bir şekilde incelemeli ve bir uygulama oluşturulurken iki ana bölüm olduğunu anlamalıyız: +- **Geliştirme** kısmı, yazılım geliştiricilerin uygulamayı programladığı ve test ettiği kısımdır. +- **Operasyonlar** kısmı, uygulamanın bir sunucuya dağıtıldığı ve bakımının yapıldığı kısımdır. + +## DevOps, Geliştirme ve Operasyonlar Arasındaki Bağlantıdır. + +DevOps'un işleyişini veya DevOps odaklı bir mühendisin gerçekleştirdiği görevleri anlamak için, geliştirme ve operasyonların araçlarını, sürecini ve genel bakışını anlamamız gerekiyor. + +Her şey uygulama ile başlar, DevOps'ta her şey uygulama etrafında döner. + +Geliştiriciler bir uygulama oluşturacak, bunu birçok farklı teknoloji yığınıyla yapabilirler ve şu anda bunu hayal gücümüze bırakalım, çünkü daha sonra bu konuya daha fazla değineceğiz. Bu aynı zamanda farklı programlama dilleri, yapı araçları, kod depoları vb. içerebilir. + +DevOps mühendisi olarak uygulamayı kodlama göreviniz olmasa da, bir geliştiricinin nasıl çalıştığını ve kullandığı sistemleri, araçları ve süreçleri anlamanız başarı için önemlidir. + +Çok genel bir düzeyde, uygulamanın tüm gereksinim duyduğu hizmetlerle, veri hizmetleriyle nasıl iletişim kurduğunu ve bunun nasıl test edilmesi gerektiğini bilmelisiniz. + +Uygulamanın bir sunucuda (nerede olduğu önemli değil, ancak bir sunucuda) dağıtılması gerekecektir. Uygulamanın oluşturulduğu uygulamaya bağlı olarak, müşteri veya son kullanıcının buna erişebilmesi beklenir. + +Bu sunucunun bir yerde çalışması gerekmektedir, yerel sunucularda, genel bulutlarda, serverless ortamlarda (Tamam, bu biraz uzak bir konu, bunu ele almayacağız, ancak bu bir seçenek ve giderek daha fazla şirket bu yöne yönelmektedir)... Bu sunucuların oluşturulması, yapılandırılması ve uygulamanın çalışması için hazırlanması gerekmektedir. Bu görevler, bir DevOps mühendisi olarak sizin sorumluluğunuza düşebilir. + +Bu sunucular bir işletim sistemi üzerinde çalışır ve genellikle bir Linux dağıtımı olacaktır. Linux hakkında temel bilgilere değineceğimiz bir bölümümüz daha olacak (bir hafta boyunca). + +Ayrıca, ağ ve ağ yapılandırması hakkında biraz bilgiye ihtiyaç duyabiliriz, bu da bir ölçüde DevOps mühendisinin sorumluluğuna girebilir. DNS, DHCP, yük dengeleme vb. ile ilgili ayrıntıları daha sonra ele alacağız. + +## Herseyi bilen hiçbir şeyi bilemez. + +Bu noktada, ağ veya altyapı konusunda uzman olmanız gerekmediğini söylemeliyim, ancak işlerin nasıl çalıştığını ve birbiriyle nasıl iletişim kurduğunu anlama ve temel bir programlama diline sahip olma bilgisine ihtiyaç duyulur. Geliştirici olmanız gerekmez, bunu bir alanda uzman olarak da benimseyebilirsiniz ve bu diğer alanlara uyum sağlamak için büyük bir temel olabilir. + +Ayrıca, muhtemelen bu sunucuların veya uygulamanın günlük yönetiminden sorumlu olmayacaksınız. + +Sunuculardan bahsettik, ancak uygulamanızın çoğunlukla çalıştığı bir sunucuda çalıştırılması için konteynerlere yönelik bir geliştirme yapılması muhtemeldir. Sadece sanallaştırma konusunda değil, hizmet olarak bulut altyapısı (IaaS), konteynerleştirme vb. konularında da bir anlayışa ihtiyaç duyulur. Bu 90 günlük süreçte odak noktası daha çok konteynerlere yönelik olacaktır. + +## Genel Bakıs Acısıyla + +Bir yandan geliştiricilerimiz uygulama için yeni özellikler ve işlevsellikler (hata düzeltmeleri de dahil) oluşturuyorlar. + +Diğer yandan, bu uygulamayı çalıştırmak ve gerekli tüm hizmetlerle iletişim kurmak için yapılandırılmış ve yönetilen bir ortam, altyapı veya sunucularımız bulunuyor. + +Büyük soru şudur: Bu özellikleri ve hata düzeltmelerini nasıl ürünlerimize entegre eder ve son kullanıcılara sunarız? + +Uygulamanın yeni bir sürümünü nasıl piyasaya süreriz? Bu, bir DevOps mühendisinin başlıca görevlerinden biridir ve burada önemli olan yalnızca bunu bir kez yapmanın yollarını bulmak değil, bunu sürekli, otomatik ve verimli bir şekilde yapmaktır ve ayrıca uygun testleri içermelidir. + +Burada öğrenme günümüzü tamamlayacağız. Devam etmek için güç toplamamız gerekiyor. Önümüzdeki günlerde, DevOps'un bazı alanlarını daha derinlemesine ele alacak ve araçların, süreçlerin ve bunların faydalarının özel bölümlerine giriş yapmaya hazırlanacağız. + +## Kaynaklar + +Her zaman readme dosyalarında ek kaynaklar bırakılacaktır, çünkü burada öğrenmek için bulunuyoruz. + +Bugünkü konulara daha genel bir bakış elde etmek ve daha fazla derinlemesine bilgi edinmek için aşağıdaki videoları izlemenizi ve makaleleri okumanızı öneririm: + +- [What is DevOps? - TechWorld with Nana (ENG)](https://www.youtube.com/watch?v=0yWAtQ6wYNM) +- [What is DevOps? - GitHub YouTube (ENG)](https://www.youtube.com/watch?v=kBV8gPVZNEE) +- [What is DevOps? - IBM YouTube (ENG)](https://www.youtube.com/watch?v=UbtB4sMaaNM) +- [What is DevOps? - AWS (ENG)](https://aws.amazon.com/devops/what-is-devops/) +- [What is DevOps? - Microsoft (ENG)](https://docs.microsoft.com/en-us/devops/what-is-devops) + +Görüşmek üzere [Gun 3](./day03.md).'de buluşalım. diff --git a/2022/tr/Days/day03.md b/2022/tr/Days/day03.md new file mode 100644 index 0000000..86cc885 --- /dev/null +++ b/2022/tr/Days/day03.md @@ -0,0 +1,75 @@ +## DevOps Yaşam Döngüsü - Uygulama Odaklı + +Devam ettikçe, Sürekli Geliştirme, test etme, Dağıtım, İzleme gibi kavramlarla sürekli olarak karşılaşacağız. Eğer bir DevOps Mühendisi olma yolunda ilerliyorsanız, tekrarlanabilirlik sizin alıştığınız bir şey olacak. Sürekli olarak gelişmek, her şeyi ilginç tutan şeydir. + +Bu saatte, uygulamanın başından sonuna kadar ve ardından sürekli bir döngü olarak bir kez daha genel bir bakış açısına sahip olacağız. + +### Gelistirme + +Bir uygulama örneği üzerinden başlayalım. Başlangıçta henüz hiçbir şey oluşturulmamıştır, belki de bir geliştirici olarak müşteriyle veya son kullanıcıyla gereksinimleri tartışmamız ve uygulama için bir plan veya gereksinimlere ulaşmamız gerekmektedir. Ardından, bu gereksinimlere dayanarak yeni uygulamamızı oluşturmamız gerekmektedir. + +Bu aşamada araçlar açısından, uygulamanın hangi IDE ve programlama diliyle oluşturulmak istendiğinden başka bir gerçek gereksinim yoktur. + +Bir DevOps mühendisi olarak, bu planı oluşturmayacak veya uygulamayı son kullanıcı için kodlamayacaksınız, bunu bir uzman geliştirici yapacaktır. Ancak, uygulamaya yönelik altyapı kararlarını alabilmek için kodun bir kısmını okuyabiliyor olmanız faydalı olabilir. + +Daha önce belirtildiği gibi, uygulama herhangi bir dilde yazılabilir. Sürüm kontrol sistemi kullanmanız önemlidir, bu konu daha sonra detaylı bir şekilde ele alınacak ve özellikle **Git** üzerine odaklanacağız. + +Proje üzerinde yalnızca bir geliştiricinin çalışmadığı durumlar da olasıdır, ancak bu durumda bile en iyi uygulamalar, kodu depolamak ve işbirliği yapmak için bir kod deposu gerektirir. Bu kod deposu, özel veya genel olabilir ve özel veya genel olarak dağıtılabilir. Genellikle bu amaçla **GitHub** veya **GitLab** gibi bir kod deposu kullanılır. Bunlar hakkında daha fazla bilgiyi daha sonra **Git** bölümünde ele alacağız. + +### Testing + + +Bu aşamada, gereksinimlerimiz ve geliştirme aşamasındaki uygulamamız var. Ancak, kodumuzu farklı mevcut ortamlarda veya özellikle seçtiğimiz programlama dilinde test ettiğimizden emin olmamız gerekiyor. + +Bu aşamada, kalite kontrol departmanı olası hataları test eder. Gittikçe daha fazla şekilde test ortamını simüle etmek için konteynerlerin kullanıldığını görüyoruz, bu genel olarak fiziksel altyapı veya bulutun genel giderlerinde büyük tasarruf sağlayabilir. + +Bu aşama aynı zamanda sürekli entegrasyonun bir parçası olarak otomatikleştirilebilir. + +Bu testleri manuel olarak yapması gereken 10, 100 veya hatta 1000 kalite kontrol mühendisiyle karşılaştırıldığında bu testleri otomatikleştirebilme yeteneği kendisi için konuşur. Bu mühendisler diğer konulara odaklanabilir, örneğin, yığının hızlı ilerlemesini sağlamak veya hata ve yazılım testlerine karşı daha fazla işlevsellik geliştirmek gibi. Bu, çoğu geleneksel yazılım yayınında kullanılan aşamalı bir metodolojiyi kullanan yazılım yayınlarında gecikmeye neden olur. + +### Entegrasyon + +DevOps yaşam döngüsünün merkezinde bulunur. Bu uygulama geliştiricilerin kod değişikliklerini daha sık doğrulamalarını gerektiren bir uygulamadır. Bu günlük veya haftalık olabilir. + +Her bir doğrulama ile uygulamanız otomatik test aşamalarından geçebilir ve bu, sonraki aşamaya geçmeden önce sorunların veya hataların erken tespitini sağlar. + +Endişelenmeyin, birçok şirket bunu yapıyor ve yapmaya devam edecek ve yazılım sağlayıcısı önceki 3 aşamaya odaklanacak, ancak son aşamayı benimsemek isteyebilirsiniz çünkü bu hızlı ve verimli bir dağıtım sürecine olanak tanır. + +Bu bilgiye sahip olmak önemlidir çünkü bugün platform yazılımını satın alabilirsiniz, ancak yarın veya gelecekteki işte ne olacağını bilemezsiniz. + +### Deploy + +İyi, uygulamamızı inşa ettik ve gereksinimlerimize uygun bir şekilde test ettik. Şimdi ilerlemeli ve kullanıcılarımızın uygulamayı kullanabileceği üretim ortamına dağıtmamız gerekiyor. + +Bu, kodun üretim sunucularına dağıtıldığı aşamadır. İşler şimdi çok ilginç hale geliyor ve geriye kalan 86 günümüzü burada geçireceğiz. Farklı uygulamalar farklı donanımlar ve/veya yapılandırmalar gerektirebilir. Bu noktada, **Uygulama Yapılandırma Yönetimi** ve **Kod Üzerinde Altyapı** önemli bir rol oynayabilir. Uygulama **konteynerlerde** olabilir, ancak bir sanal makinede çalıştırılabilir. Bu bizi **Kubernetes** gibi platformlara yönlendiriyor, bu platform konteynerlerimizi orkestrasyon yapar ve istenen durumu sağlar. + +Bu cesur konulara daha sonra daha detaylı olarak gireceğiz ve ne olduklarını ve ne zaman kullanılacaklarını daha iyi anlamak için temel bir bilgi edineceğiz. + +### Izleme + +Burada her şey hızlı ilerliyor ve sürekli olarak yeni özellikler ve işlevlerle uygulamamızı güncelliyoruz. Testlerin uygulamada herhangi bir hata olmadığından emin olması gerekiyor. Üretim ortamında uygulama çalışıyor ve gereken yapılandırma ve performans sürekli olarak korunuyor olabilir. + +Ancak şimdi, son kullanıcılarımızın ihtiyaç duydukları deneyimi aldığından emin olmamız gerekiyor. Uygulamamızın performansı sürekli olarak izlenmelidir. Bu aşama, geliştiricilerin gelecekteki uygulama sürümlerinde iyileştirmeler yapmaları için en iyi kararları vermelerine olanak sağlar. + +Bu bölüm aynı zamanda uygulamada uygulanmış özellikler hakkındaki geri bildirimi ve son kullanıcıların uygulamayı nasıl geliştirmek istediğini yakalamamız gereken yerdir. + +Güvenilirlik burada önemli bir faktördür, sonuçta uygulamamızın ihtiyaç duyulan süre boyunca her zaman kullanılabilir olmasını istiyoruz, yüksek erişilebilirliğe sahip olmak istiyoruz. Bu, sürekli olarak **gözlem, güvenlik ve veri yönetimi** gibi diğer alanların izlenmesini gerektirir. Geri bildirim her zaman iyileştirmek, güncellemek ve uygulamayı sürekli olarak yayınlamak için kullanılabilir. + +Bu sürekli süreçte, [FinOps](https://www.ibm.com/es-es/topics/finops) ekipleri de dahil olmalıdır. Uygulamalar ve veriler çalıştırıldığı ve depolandığı bir yerde finansal takip gerektirir, böylece ekonomik kaynaklar açısından değişiklikler önemli mali sorunlara yol açmaz. + +Toplulukla konuşurken, "DevOps Mühendisi" unvanının kimse için hedef olmaması gerektiği çünkü aslında herhangi bir pozisyonun DevOps süreçlerini ve burada açıklanan kültürü benimsemesi gerektiği belirtilmektedir. DevOps, bulut mühendisi/mimar, sanallaştırma yöneticisi, bulut mimarı/mühendisi ve altyapı yöneticisi gibi farklı pozisyonlarda kullanılmalıdır. Bunlar sadece bazı örneklerdir, ancak yukarıda "DevOps Mühendisi" terimini kullanma nedeni, yukarıdaki pozisyonlardan herhangi biri tarafından kullanılan sürecin kapsamını vurgulamaktır. + +## Kaynaklar + +Her zaman readme dosyalarında ek kaynaklar bırakılacak, çünkü burada öğrenmek için bulunuyoruz. + +Bu belgeleri tam olarak takip etmek için bugün gördüklerimizin genel bir fikrini edinmeniz ve daha fazla derinlemesine araştırma yapmanız için aşağıdaki videoları izlemeniz ve makaleleri okumanız en iyisidir. +- [Continuous Development](https://www.youtube.com/watch?v=UnjwVYAN7Ns) +- [Continuous Testing - IBM YouTube](https://www.youtube.com/watch?v=RYQbmjLgubM) +- [Continuous Integration - IBM YouTube](https://www.youtube.com/watch?v=1er2cjUq1UI) +- [Continuous Monitoring](https://www.youtube.com/watch?v=Zu53QQuYqJ0) +- [The Remote Flow](https://www.notion.so/The-Remote-Flow-d90982e77a144f4f990c135f115f41c6) +- [FinOps Foundation - What is FinOps](https://www.finops.org/introduction/what-is-finops/) +- [**NOT FREE** The Phoenix Project: A Novel About IT, DevOps, and Helping Your Business Win](https://www.amazon.com/Phoenix-Project-DevOps-Helping-Business/dp/1942788290/) + +Görüşmek üzere, [Gun 4](day04.md)'te buluşalım. diff --git a/2022/tr/Days/day04.md b/2022/tr/Days/day04.md new file mode 100644 index 0000000..643d8b3 --- /dev/null +++ b/2022/tr/Days/day04.md @@ -0,0 +1,104 @@ +## DevOps & Agile + +DevOps ve Agile arasındaki farkı biliyor musunuz? İkisi bağımsız kavramlar olarak ortaya çıktı. Ancak şimdi bu iki terim birleşiyor. + +Bu yazıda, Agile ve DevOps arasındaki temel farkları inceleyecek ve neden bu ikisinin birbirine sıkı bir şekilde bağlı olduğunu keşfedeceğiz. + +Başlamadan önce, Agile vs DevOps öğrenme arasındaki ortak bir açıyı biraz daha anlamamız gerekiyor, çünkü benzer hedeflere ve süreçlere sahipler. Tanımlamalarla başlayalım. + +### Agile Geliştirme + +Agile, uzun süreler alan büyük ürün etkileşimlerini yayınlamaktansa, daha sık küçük sonuçlar sunmaya odaklanan bir yaklaşımdır; yazılım iterasyonlar halinde geliştirilir: Ekip, yeni bir sürümü her ay, her hafta veya bazı durumlarda günlük olarak yayınlar ve artan güncellemelerle. Agile'ın nihai amacı, ilk teslimat olan minimum işlevsel üründen başlayarak kullanıcılara en iyi deneyimi sunmaktır. + +### DevOps + +Bununla ilgili önceki günlerde bahsetmiştik, DevOps'un nihai hedeflerini tanımlama şeklinde bazı farklılıklar olabilir. DevOps genellikle geliştiriciler ve operasyon uzmanları arasındaki işbirliği temelinde yazılım geliştirme ve teslimatını tanımlar. DevOps'un temel avantajları, geliştirme süreçlerini basitleştirmek ve iletişim eksikliğini en aza indirmektir. + +## Agile ve DevOps Arasındaki Fark Nedir? + +Ana fark, endişeleridir. Agile ve DevOps farklı endişelere sahip olsalar da birbirlerine yardımcı olurlar. Agile kısa bir iterasyon istiyor ve bu sadece DevOps tarafından sağlanan otomasyonla mümkün oluyor. Agile, müşterinin belirli bir sürümü test etmesini ve hızlı geri bildirim vermesini istiyor, bu da DevOps'un bu amaç için gerekli ortamların oluşturulmasını kolaylaştırmasıyla mümkün oluyor. + +### Farklı Katılımcılar + +Agile, son kullanıcılar ve geliştiriciler arasındaki iletişimi optimize etmeye odaklanırken, DevOps geliştiricilere ve operasyon ekibi üyelerine yöneliktir. Agile, müşterilere yönelik dışa dönükken, DevOps iç işleyişleri olan bir dizi uygulamadır. + +### Ekip + +Agile genellikle yazılım geliştiricilere ve proje yöneticilerine uygulanır. DevOps mühendislerinin yetkinlikleri, yazılımın yaşam döngüsünün tüm aşamalarında yer aldıkları için, geliştirme, kalite kontrol (QA) ve operasyonların kesişiminde bulunur ve Agile ekibinin bir parçası olarak da yer alırlar. + +### Frameworkler + +Agile, esneklik ve şeffaflık sağlamak için birçok yönetim çerçevesine sahiptir: + +- Scrum +- Kanban +- Lean +- Extreme Programming (XP) +- Crystal +- Dynamic Systems Development Method (DSDM) +- Feature-Driven Development (FDD) + +Bu çerçeveler, Agile prensiplerini uygulama ve projeleri yönetme konusunda farklı yaklaşımlar sunar. Her biri, farklı bir odak noktasıyla ekiplere esneklik ve işbirliği sağlama amacını taşır. Seçilecek çerçeve, projenin ihtiyaçlarına, ekibin yapısına ve iş süreçlerine bağlı olarak değişebilir. + +DevOps, dediğiniz gibi, geliştirme sürecinin işbirliğine dayalı bir yaklaşıma odaklanır, ancak belirli metodolojiler sunmaz. DevOps, İnfrastrüktürü Kod (IaC), Kod olarak Mimari, izleme, Kendini İyileştirme ve uçtan uca otomatik test gibi uygulamaları teşvik eder. Ancak, DevOps kendisi bir çerçeve değildir, daha çok bir uygulamadır. + +DevOps, yazılımın sürekli bir şekilde teslim edilmesini ve daha verimli bir yazılım yaşam döngüsü elde etmeyi hedefleyen geliştirme ve operasyon ekiplerini birleştirme fikrine dayanır. Otomasyon ve işbirliğini teşvik eden uygulamaları benimseyerek, DevOps ekipleri yazılımın verimliliğini, kalitesini ve teslim hızını artırabilir. + +Özetlemek gerekirse, Agile belirli metodolojiler olan Scrum, Kanban ve diğerlerini sağlarken, DevOps yazılım geliştirme ve operasyonlarında işbirliği ve otomasyonu teşvik eden uygulamalar ve ***prensipler** üzerinde odaklanır. + + +### Geri Bildirim + +Agile'de başlıca geri bildirim kaynağı son kullanıcı iken, DevOps'ta paydaşların ve takımın geri bildirimi önceliklidir, çünkü onlar olası darboğazları ve iyi uygulamaları bilmektedir. + +### Hedef Alanlar + +Agile daha çok yazılım geliştirmeye odaklanırken, DevOps yazılım geliştirme yanı sıra dağıtım, bakım, izleme, yüksek kullanılabilirlik, güvenlik ve veri koruması gibi aşamaları da kapsar. + +### Dokumantasyon +Agile, esnekliği ve devam eden görevleri belgelendirmeye ve denetlemeye göre önceliklendirirken, DevOps proje belgelerini projenin temel bileşenlerinden biri olarak kabul eder. [Docs-as-code](https://www.writethedocs.org/guide/docs-as-code/) + +### Riskler + +Agile'nin riskleri metodolojinin esnekliğinden kaynaklanır. Agile projeleri tahmin etmek veya değerlendirmek zordur, çünkü öncelikler ve gereksinimler sürekli değişir. + +DevOps'un riskleri ise terimlerin yanlış anlaşılmasından veya uygun araçların eksikliğinden kaynaklanır. Bazı insanlar DevOps'u dağıtım ve sürekli entegrasyon için bir yazılım koleksiyonu olarak görür, ancak yazılım, geliştirme süreçlerinin temel yapısal yapısına göre değişir. + +### Kullanılan Araclar + +Agile ve DevOps'in birleştirilmesi, esnek yönetim ve güçlü teknoloji gibi birçok fayda sağlayabilir. Bazı önemli noktalar şunlardır: + +Agile araçları ile iletişim, işbirliği, metrikler ve bilgi işleme gibi konulara odaklanır. En popüler araçlar arasında [Jira](https://www.atlassian.com/es/software/jira), [Trello](https://trello.com/), [Slack](https://slack.com/intl/es-es/), [Zoom](https://zoom.us/) ve [SurveyMonkey](https://www.surveymonkey.com/) gibi örnekler bulunur. + +DevOps, ekip iletişimi, yazılım geliştirme, dağıtım ve entegrasyon gibi konularda araçlar kullanır. [Jenkins](https://www.jenkins.io/), [GitHub Actions](https://github.com/features/actions), [BitBucket](https://bitbucket.org/) gibi araçlar yaygın olarak kullanılır. Agile ve DevOps farklı yaklaşımlara ve kapsamlara sahip olsa da, temel değerleri neredeyse aynıdır, bu yüzden ikisi bir araya getirilebilir. + +## Unirlo todo... ¿buena idea? ¿Quizá no? + +Agile ve DevOps'in birleştirilmesi aşağıdaki faydaları sağlar: + +- Esnek yönetim ve güçlü teknoloji. +- Agile uygulamaları, DevOps ekiplerinin önceliklerini daha verimli bir şekilde iletişim kurmasına yardımcı olur. +- DevOps uygulamalarının otomasyon maliyeti, hızlı ve sık bir şekilde dağıtım gereksinimine dayalı Agile gereklilikleriyle açıklanır. +- Güçlendirme sağlar: Agile uygulamalarını benimseyen ekip, işbirliğini geliştirir, ekip motivasyonunu artırır ve çalışan devir oranını azaltır. +- Sonuç olarak, daha iyi bir yazılım kalitesi elde edilir ve müşteri ihtiyaçlarına daha iyi uyum sağlanır. + +Agile, hataları düzeltmek ve teknik borç biriktirmekten kaçınmak için ürün geliştirme sürecinde önceki aşamalara geri dönme imkanı sunar. Agile ve DevOps'u aynı anda benimsemek için yalnızca aşağıdaki 7 adımı takip etmeniz yeterlidir: + +1. Geliştirme ve işletme ekiplerini sürekli iletişim halinde birleştirin. +2. Yapı ve yürütme ekipleri oluşturun, geliştirme ve işletme ile ilgili tüm endişeleri DevOps ekibiyle tartışın. +3. Sprint'lerin odak noktasını değiştirin ve geliştirme görevleriyle aynı değere sahip DevOps görevlerini önceliklendirin. Geliştirme ve işletme ekiplerini diğer ekiplerin çalışma akışı ve olası sorunlar/iyileştirmeler hakkında fikir alışverişine teşvik edin. +4. Kalite kontrolünü geliştirme sürecinin tüm aşamalarına dahil edin. +5. Uygun araçları seçin. +6. Mümkün olan her şeyi otomatikleştirin. +7. Somut sonuçlar kullanarak ölçün ve kontrol edin. + +Ne düşünüyorsunuz? Başka bir bakış açınız var mı? Agile ve DevOps konularında daha iyi bir anlayışa sahip olan geliştiriciler, işletme ve QA ekiplerinden veya bu konuda geri bildirimde bulunabilecek herhangi bir kişiden görüşlerinizi dinlemek isterim. + +### Kaynaklar + +- [DevOps for Developers – Day in the Life: DevOps Engineer in 2021](https://www.youtube.com/watch?v=2JymM0YoqGA) +- [3 Things I wish I knew as a DevOps Engineer](https://www.youtube.com/watch?v=udRNM7YRdY4) +- [How to become a DevOps Engineer feat. Shawn Powers](https://www.youtube.com/watch?v=kDQMjAQNvY4) + + +Görüşmek üzere. [Gun 5](day05.md). diff --git a/2022/tr/Days/day05.md b/2022/tr/Days/day05.md new file mode 100644 index 0000000..3f47a53 --- /dev/null +++ b/2022/tr/Days/day05.md @@ -0,0 +1,91 @@ +## [Planlama](#planlama) > [Kodlama](#kodlama) > [Insa Etme](#insaetme) > [Test Etne](#testetme) > [Versiyon Yayınlama](#versiyonyayinlama) > [Dagitim](#dagitim) > [Isletme](#isletme) > [Izleme](#izleme) > [Sürekli Tekrar](#sureklitekrar) + + +Planlama > Kodlama > Insa Etme > Test Etme > Surum Yayinlama > Dagitma > Isletme > Izleme > + +Bugün DevOps bakış açısından bir Uygulamanın yasam döngüsünde adım adım ilerlemeye odaklanacağız. + +![DevOps](Images/Day5_DevOps8.png) + +### Planlama(Plan) + +Her şey planlama süreciyle başlar, bu süreçte geliştirme ekibi bir araya gelir ve bir sonraki sprintlerinde hangi tür özellikleri ve hata düzeltmelerini yayımlayacaklarını belirler. Bir DevOps mühendisi olarak, bu noktada da dahil olmanız önemlidir, böylece ileride nelerin geleceğini öğrenir ve kararları etkileyerek hem onlar için en iyi uyarlanabilecek altyapıyla çalışmalarına yardımcı olabilirsiniz. Burada dikkat edilmesi gereken önemli bir nokta, hem geliştiricilerin hem de yazılım mühendisliği ekibinin DevOps mühendislerinin müşterileri olduğudur, bu nedenle yanlış bir yola gitmeden önce müşterilerle çalışmak önemlidir. + +### Kodlama(Code) + +Planlama oturumu tamamlandıktan sonra kod yazmaya başlayacaklar ve önemli olan, kod yazılırken DevOps felsefesinin, hangi hizmetlere ihtiyaç duyulduğu biliniyorsa altyapıyı daha iyi anlamada yardımcı olabilmesidir. Başlangıcı takip etmek, mümkün olan en kısa sürede bu kodu depolara birleştirmek için uygun hizmetleri seçmenin en iyi yoludur. + +### Insa Etme (Build) + +İşte otomatizasyon süreçlerimizin ilki olan inşa sürecine başlayacağımız yer burasıdır. Uygulamanın kodunu alacak ve kullandıkları dilin bağımlılıklarını oluşturacağız. Bu, yorumlanabilir veya derlenebilir olabilir veya bu kodla bir Docker imajı oluşturulabilir. Her durumda, bu süreci bir pipeline kullanarak baştan itibaren gerçekleştireceğiz. [CI/CD](https://en.wikipedia.org/wiki/CI/CD). + +## Test Etme (Testing) + +Container'imizi oluşturduktan sonra ilk testleri gerçekleştireceğiz. Geliştirme ekibi genellikle yazılım için uygun testleri yazar, ancak biz üretim ortamında hataların en aza indirgenmesine yardımcı olma amacıyla testleri gerçekleştirmeliyiz. Bu, tam bir garanti sağlamaz, ancak olası sorunları en aza indirgemek ve daha önce çalışan şeylerin bozulmamasını sağlamak için elimizden geleni yapmalıyız. Production ortamında "Benim makinede çalışıyordu" demek kabul edilemez. + +## Versiyon Yayınlama(Release) + +Testlerden geçtikten sonra kodumuzu yayınlama sürecine devam ederiz ve yine, çalıştığımız uygulama türüne bağlı olarak doğru adımları izlememiz gerekmektedir. Örneğin, kod GitHub veya herhangi bir özel git deposunda olabilir veya derlenmiş bir kod veya zaten oluşturduğunuz bir Docker imajı olabilir ve bunu üretim sunucularının erişebileceği bir kayıt veya depoya yüklemeniz gerekebilir, böylece dağıtım ve sürüm kontrolü süreci mümkün olduğunca basit olur. + +## Dagıtım (Deploy) + +İşte yaşam döngüsünün son aşamasına geldik çünkü dağıtımlarla kodu üretim ortamına yerleştiriyoruz ve işletme burada yazılım mühendisliği ekiplerinin harcadığı tüm çaba ve zamanın değerini fark ediyor. + +## Isletme(Operate) + +Şimdi dağıtımımızla işletmeye başlayacağız. Bu, site veya uygulamanın yavaş çalıştığından dolayı müşterilerden gelen şikayetler almaya başlamak gibi bir şeyi içerebilir. Bu durumda, mümkün olan en kısa sürede neyin yanlış gittiğini metrikler aracılığıyla belirlememiz gerekecektir. Büyük trafik pikleri olan dönemlerde kaynak sayısındaki artışı yönetmek için otomatik ölçeklendirme yapmak, düşük yoğunluklu dönemlerde kaynakları azaltmak gibi işlemleri gerçekleştirmemiz gerekebilir. Bu sadece dikkate almanız gereken işlemlerden biridir. + +Diğer bir işlem, üretim ekibine geri bildirim döngüsü olarak üretimle ilgili önemli olayları ilk elden bildirmelerine izin vermektir. Yanlış bir dağıtım veya bir sürüm geri alma ihtiyacı gibi. Bu otomatik olabilir veya olmayabilir, her zaman ortama bağlıdır. Amaç, mümkün olduğunca otomatikleştirmek olsa da bazı ortamlarda maliyetler açısından otomatik ölçeklendirme bir dezavantaj olabilir. Bazı ortamlarda otomatik ölçeklendirme için bazı adımların hazırlanması gerekebilir veya üretim zaten istikrarlıdır ve otomatik ölçeklendirmeye ihtiyaç duymaz. + +İdeal olan, her tahmin edilebilir dağıtımın otomasyon süreci içinde olmasıdır. Ve bunu yaparken, otomatikleştirmenin yanı sıra tüm işlemleri içeren işlemler adımlarını da içermelidir, ayrıca operasyon ekibinin otomatik değişiklikleri ve tüm önemli olayları bildiren bir bildirim türü gibi. Tabii ki, dağıtımlar da bunun içinde yer alır. + +## Izleme (Monitoring) + +Tüm bu önceki adımlar sonucunda, son adıma geçiyoruz: izleme. Özellikle bahsettiğimiz otomatik ölçeklendirme sorunlarının çözümüne odaklanır. İzleme olmadan bir sorunun olduğunu nasıl bileceksiniz ki? + +Bu nedenle, izleme aracılığıyla kontrol edilebilecek bazı şeyler şunlardır: + +- Bellek kullanımı. +- CPU kullanımı. +- Disk alanı. +- API'nin son noktası. +- Yanıt süresi. +- Son noktanın ne kadar hızlı yanıt verdiği. +- Trafik genişliği. +- Bunların birçoğunda size loglar yardımcı olacak, geliştiricilerin üretim sistemlerine erişmeden neler olduğunu görmelerini sağlayan bir yetenek sunarlar. + +## Surekli Tekrarlama + +Bu noktada, planlama aşamasına geri dönülür ve süreç ikinci, üçüncü, dördüncü tekrarlamada yeniden başlatılır. Yazılım mühendisliği ve altyapı çalışması, her zaman en iyi uygulamayı müşterilere/son kullanıcılara sunmak için sürekli tekrarlamaya devam etmektir. + +## Süreklilik + +Sürekli işlemi gerçekleştirmemize yardımcı olan birçok araç vardır, tüm kodu ve son hedefi tamamen otomatik hale getirmek. Bulut altyapısı veya herhangi bir ortam sıklıkla **Sürekli Entegrasyon / Sürekli Dağıtım / Sürekli Dağıtım** olarak tanımlanır. Kısaltması "CI/CD"dır. Bu 90 günlük süre boyunca, temelleri anlamak ve içselleştirmek için CI/CD'yi anlamak için örnekler ve rehberlerle bir hafta ayrılacaktır. + +### Sürekli Teslimat + +**Sürekli Teslimat** = Planlama > Kodlama > Insa Etme(Build) > Test Etme + +### Sürekli Entegrasyon + +Bu, önceki **Sürekli Dağıtım** aşamalarının sonuçlarının ve Başarısızlık ve Başarı aşamalarının sonuçlarının birleşimidir. Ancak bu, **sürekli dağıtım**a geri bildirimde bulunur veya **Sürekli Dağıtım** olarak taşınır. + +**Sürekli Entegrasyon** = Planlama > Kodlama > Oluşturma > Test Etme > Başlatma + +### Sürekli Dagıtım + +Başarılı bir **sürekli entegrasyon** ile **Sürekli Dağıtım**a geçebiliriz ve aşağıdaki aşamaları içerir: + +Başarılı sürekli entegrasyon = **Sürekli Dağıtım** = Dağıtma > İşletme > İzleme + +Bu üç sürekli kavram, DevOps yaşam döngüsündeki aşamaları kapsar. + +Bu son bölüm, Ders 3 için bir özet oldu ve mümkün olduğunca açık olması için yapıldı. + +### Kaynaklar + +- [DevOps for Developers – Software or DevOps Engineer?](https://www.youtube.com/watch?v=a0-uE3rOyeU) +- [Techworld with Nana -DevOps Roadmap 2022 - How to become a DevOps Engineer? What is DevOps?](https://www.youtube.com/watch?v=9pZ2xmsSDdo&t=125s) +- [How to become a DevOps Engineer in 2021 - DevOps Roadmap](https://www.youtube.com/watch?v=5pxbp6FyTfk) + +Gorusmek Uzere [Gun 6](day06.md). diff --git a/2022/tr/Days/day06.md b/2022/tr/Days/day06.md new file mode 100644 index 0000000..e3c4c27 --- /dev/null +++ b/2022/tr/Days/day06.md @@ -0,0 +1,68 @@ +## DevOps - Gercek Hikayeler + +Başlangıçta, DevOps birçok kişi için erişilemez olarak görülüyordu çünkü Netflix gibi şirketler veya Fortune 500 listesindeki şirketler tarafından uygulanmıyordu. Günümüzde ise DevOps felsefesi birçok şirket tarafından benimsenen normal bir uygulama haline geldi, hatta bazıları adını bile koymasa da. + +Aşağıdaki kaynaklarda, farklı sektörlerde DevOps'u kullanan ve iş hedeflerine büyük olumlu etkisi olan birçok şirketin olduğunu görebilirsiniz. + +Genel olarak, DevOps'un doğru bir şekilde uygulanması, işletme yazılımının hızını ve kalitesini artırmaya yardımcı olmalıdır. + +Bu gün, başarılı bir şekilde DevOps uygulayan şirketlere ve bununla ilgili kaynaklara bakmak için ayrılmıştır. Bu, topluluğun bu konuya dalmak ve yardımcı olmak için harika bir fırsat olacak. Şirketinizde DevOps kültürünü benimsediniz mi? Başarılı oldu mu? + +Önceki bölümde Netflix'ten bahsedildi ve şimdi biraz daha detaylandırılacak, çünkü genellikle büyük şirketlerde gördüğümüzden daha gelişmiş ve iyi bir modeldir. Ancak, DevOps düşüncesine sahip diğer büyük şirketlerin de başarı elde ettiği ve önemli olduğunu belirtmek gerekir. + +## Amazon + +2010 yılında, Amazon fiziksel sunucu altyapısını AWS (Amazon Web Services) bulutuna taşıdı. Bu, kaynakları çok küçük artışlarla artırma ve azaltma imkanı sağladı. Ayrıca AWS'nin Amazon'un perakende bölümünü yönetirken yüksek gelirler elde ettiğini biliyoruz. + +Amazon, 2011 yılında (aşağıdaki kaynaklardan birine göre) geliştiricilerinin istedikleri zaman ve ihtiyaçlarına göre kodu dağıtabildikleri sürekli dağıtım sürecini benimsedi. Bu, Amazon'un yeni yazılımı üretim sunucularına dağıtma süresinin ortalama olarak sadece 11.6 saniye olduğunu başarmasını sağladı! 😳 + +## Netflix + +Netflix'i kullanmayan veya kullanmamış olan var mı? Yüksek kaliteli bir akış hizmeti ve harika bir kullanıcı deneyimi sunuyor. + +Bu harika kullanıcı deneyiminin nedeni nedir? İyi bir UX sunabilme yeteneği, üç temel unsura dayanır: + +- Hız +- Esneklik +- Kaliteye önem verme +- Netflix geliştiricileri, IT operasyonlarına bağlı olmadan dağıtılabilir web görüntülerinde kod parçalarını otomatik olarak oluşturabilirler. Görüntüler güncellendikçe, özel olarak oluşturulmuş bir web tabanlı platform aracılığıyla Netflix altyapısına entegre edilir. + +Sürekli izleme süreci her zaman devam etmekte ve yeni görüntülerin dağıtımında bir hata oluşursa hemen geri alınarak trafiğin önceki sürüme yönlendirilmesi sağlanmaktadır. + +Aşağıdaki kaynaklarda, Netflix ekibinin yapması gerekenler ve yapmaması gerekenler konusunda daha detaylı bir sunum bulunmaktadır. + +## Etsy + +Mühendisler ve şirketler için yavaş ve zorlu dağıtımlar gerçek bir mücadeleye dönüştü. Aynı şekilde, bazı şirketlerde birçok izolasyonlu ekip ve iş birliği olmayan takımlarla çalışma deneyimi yaşanmış olabilir. + +Amazon ve Netflix hakkında okuduğumuzda, Etsy'nin de geliştiricilere kendi kodlarını dağıtma izni verdiği sonucuna varabiliriz ve bu geçişin 2009'un sonlarında gerçekleştiği biliniyor. + +İlginç bir nokta, geliştiricilerin dağıtımdan sorumlu olduklarında, uygulamanın performansı, çalışma süresi ve diğer hedefler konusunda da sorumluluk duyduklarını fark etmeleriydi. + +Öğrenme kültürü, DevOps'un temel bir parçasıdır. Hatta başarısızlık, doğru derslerin öğrenilmesiyle bir başarı haline dönüşebilir. + +Kaynaklarda, DevOps'un bu devasa başarılı şirketlerin iş yapış şeklini nasıl değiştirdiğine dair başka hikayeler bulunabilir. + +## Kyanaklar + +- [How Netflix Thinks of DevOps](https://www.youtube.com/watch?v=UTKIT6STSVM) +- [16 Popular DevOps Use Cases & Real Life Applications [2021]](https://www.upgrad.com/blog/devops-use-cases-applications/) +- [DevOps: The Amazon Story](https://www.youtube.com/watch?v=ZzLa0YEbGIY) +- [How Etsy makes DevOps work](https://www.networkworld.com/article/2886672/how-etsy-makes-devops-work.html) +- [Adopting DevOps @ Scale Lessons learned at Hertz, Kaiser Permanente and lBM](https://www.youtube.com/watch?v=gm18-gcgXRY) +- [Interplanetary DevOps at NASA JPL](https://www.usenix.org/conference/lisa16/technical-sessions/presentation/isla) +- [Target CIO explains how DevOps took root inside the retail giant](https://enterprisersproject.com/article/2017/1/target-cio-explains-how-devops-took-root-inside-retail-giant) + +### Recapitulación de los primeros días viendo DevOps + +- DevOps, geliştirme ve operasyonların birleşimi olarak tanımlanır ve uygulama geliştirme yaşam döngüsünün tamamını tek bir ekip tarafından yönetmeyi sağlar, bu döngü şunlardan oluşur: +**Geliştirme --> Testler --> Dağıtım --> Operasyonlar** + +- DevOps'un ana amacı, geliştirme yaşam döngüsünü kısaltmak ve aynı zamanda iş hedefleriyle sıkı bir uyum içinde sık sık özellikler, düzeltmeler ve işlevsellik sunmaktır. + +- DevOps, yazılım geliştirme için güvenilir ve hızlı bir şekilde yazılım teslim etme ve geliştirme yaklaşımıdır. Bu aynı zamanda **Sürekli Entegrasyon / Sürekli Dağıtım** (CI/CD) olarak da adlandırılır. + +7. Güne görüşmek üzere. + +7. günde programlama diline odaklanacağız. Bir geliştirici olmayı hedeflemiyoruz, ancak en azından geliştiricilerin neler yaptığını anlayacak yetenekte olmalıyız. +Bunu bir haftada başarabilir miyiz? Muhtemelen hayır, ama 7 gün veya 7 saat boyunca bir şeyler öğrenirsek, başladığımızdan daha fazla bilgi sahibi olacağız. \ No newline at end of file diff --git a/2022/tr/Days/day07.md b/2022/tr/Days/day07.md new file mode 100644 index 0000000..7948ff3 --- /dev/null +++ b/2022/tr/Days/day07.md @@ -0,0 +1,80 @@ +## Genel Bakış: DevOps ve Bir Programlama Dilini Öğrenmek + +Uzun vadeli başarı için, bir DevOps mühendisi olarak en azından temel düzeyde bir programlama dilini bilmek gerekmektedir. Yeni "Bir Programlama Dilini Öğrenmek" bölümünün bu ilk oturumunda, neden programlama dillerini bilmek bu kadar önemli bir beceri olduğunu keşfedeceğiz. Bu haftanın veya bölümün sonunda, bu öğrenme yolculuğunda ilerlemek için neden, nasıl ve ne yapmamız gerektiği konusunda daha iyi bir anlayışa sahip olacağız. + +Sosyal medyada, DevOps ile ilgili pozisyonlarda programlama bilgisinin gerekip gerekmediğini sorsak, cevap kesin bir EVET olurdu. Ancak daha da önemli bir soru ortaya çıkıyor ve burada kesin bir cevap alamayız: **hangi programlama dili?** En yaygın cevap genellikle Python olur, çünkü öğrenme eğrisi daha düşük olabilir. Ayrıca, giderek daha fazla şekilde, başlangıç dilleri arasında Go veya Golang'in önem kazandığını görüyoruz. + +DevOps'ta başarılı olmak için iyi bir programlama becerisine sahip olmak gerekmektedir. Şimdi, doğru yolunu seçebilmek için neden ihtiyacımız olduğunu anlamamız gerekiyor. + +## Bir programlama dilini öğrenmeniz gerektiğini anlamak için nedenler şunlardır: + +Python ve Go dillerinin DevOps mühendisleri için sık sık önerilmesinin nedeni, birçok DevOps aracının bu dillerle yazılmasıdır. Bu, DevOps araçları oluşturacaksanız veya mevcut araçları genişletecekseniz mantıklıdır. Bunun önemli olduğunu anlamak önemlidir, çünkü bu gerçekten neyi öğrenmeniz gerektiğini ve hangi dilin en faydalı olduğunu belirleyecektir. + +- Eğer DevOps araçları oluşturacaksanız veya bu alanda çalışan bir ekibe katılıyorsanız, aynı dil öğrenmek mantıklı olacaktır. +Eğer Kubernetes veya Konteynerlere çok fazla dahil olacaksanız, Go'yu tercih etmek isteyebilirsiniz. +Yazar Michael Cade'in çalıştığı şirket (Kasten by Veeam), Kubernetes için veri yönetimine odaklanan Cloud-Native ekosistemde yer alıyor ve her şey Go dilinde yazılmış. + +- Belki bu net bir seçim yapmak için yeterli sebepler değildir, belki hala eğitim görüyor veya bir kariyer geçişinde karar verme aşamasındasınızdır. Bu durumda, çalışmak istediğiniz uygulamalarla en iyi uyum sağlayan programlama dilini seçmek için emin olmanız gerekmektedir. Sonuçta, programlama dilinin temel kavramlarını iyi anlarsanız, bir dilin iyi öğrenildikten sonra diğerlerini daha hızlı öğrenebilirsiniz. + +Unutmayın, DevOps felsefesinde bir yazılım geliştirici olmayı hedeflemiyorsunuz, sadece biraz daha fazla programlama dilini anlamak ve bu araçların ne yaptığını okuyup anlamak istiyorsunuz. Bu, özel ihtiyaçları olan projeler için işleri geliştirmemize yardımcı olacaktır. + +Ayrıca,[Kasten K10](https://www.kasten.io/), [Terraform](https://www.terraform.io/) ve [HCL](https://github.com/hashicorp/hcl) gibi DevOps araçlarıyla nasıl etkileşimde bulunulacağını bilmek önemlidir. Bu araçlar, işleri gerçekleştirmek için bu araçlarla etkileşime geçmek için kullanılan yapılandırma dosyalarına ihtiyaç duyar. Bu yapılandırma dosyaları genellikle YAML formatında olacaktır. (Daha sonra YAML dosyalarının daha fazla detayını göreceğiz) + +## Neden bir Programlama Dilini oğrenmem gerektiğine ikna oldum? + +Genellikle veya rolünüze bağlı olarak, çoğu zaman mühendislik ekiplerine DevOps'u iş akışlarına entegre etmelerinde yardımcı olacak, uygulama etrafında birçok test gerçekleştirecek ve inşa edilen iş akışının önceden bahsettiğimiz DevOps prensipleriyle uyumlu olduğundan emin olacaksınız. Aslında, bu, uygulamanın performans sorunlarını çözmenin büyük bir kısmını veya benzer şeyleri yapmanın büyük bir kısmını oluşturacaktır. Bu, başlangıçtaki mantığa geri döner, ihtiyaç duyduğunuz programlama dili, üzerinde çalıştığınız veya ilgilendiğiniz projelerde veya işlerde yazılan kodlardır. Eğer uygulama NodeJS'te yazılmışsa, Go veya Python gibi yirmi tane sertifikanız olsa da çok yardımcı olmaz. + +## Neden Go Dilini Tercih Etmeliyim? + +Go (Golang), son yıllarda oldukça popüler hale gelmiş bir programlama dilidir. 2021 StackOverflow anketine göre, Go, en çok aranan programlama, betikleme ve işaretleme dilleri arasında dördüncü sırada yer aldı ve Python birinci sıradaydı. Go'nun bu popülerlik kazanmasının birkaç nedeni vardır: + +- Basitlik ve Verimlilik: Go, basit bir sözdizimine ve az sayıda anahtar kelimeye sahip bir dil olarak tasarlanmıştır. Bu, kodun daha hızlı yazılmasını ve anlaşılmasını sağlar. Aynı zamanda derlenen bir dil olduğu için yüksek performanslı ve verimli çalışır. + +- Paralellik ve Eşzamanlılık: Go, paralel ve eşzamanlı programlamaya doğal destek sağlar. "Go rutinleri" olarak adlandırılan hafif iş parçacıkları sayesinde, çoklu işlemleri kolayca yönetebilir ve performansı artırabilirsiniz. + +- Hata Kontrolü: Go, hata kontrolü için dahili bir mekanizma olan hata döndürme (error handling) yöntemini kullanır. Bu, hataları daha iyi yönetmenize ve kodunuzu daha güvenilir hale getirmenize olanak tanır. + +- Geniş Kütüphane Desteği: Go, zengin bir standart kütüphaneyle birlikte gelir ve birçok farklı alanda kullanılabilen çeşitli harici kütüphanelerle desteklenir. Bu, geliştirme sürecini hızlandırır ve daha karmaşık problemleri çözmek için kullanışlı araçlar sunar. + +- Web Geliştirme: Go, web uygulamaları geliştirmek için kullanışlı bir dil olarak kabul edilir. Dahili olarak HTTP sunucu ve istemci kütüphaneleri sunar ve hızlı ve ölçeklenebilir web uygulamalarının geliştirilmesini kolaylaştırır. + +Tabii ki, her proje veya senaryo için en iyi programlama dili farklı olabilir. Ancak, Go, DevOps için birçok avantaja sahip olan güçlü bir programlama dilidir ve bu nedenle birçok profesyonel tarafından tercih edilmektedir. + +- [StackOverflow 2021 Developer Survey – Most Wanted Link](https://insights.stackoverflow.com/survey/2021#section-most-loved-dreaded-and-wanted-programming-scripting-and-markup-languages) + + +Aynı şekilde, Kubernetes, Docker, Grafana ve Prometheus gibi en popüler DevOps araçları ve platformlarının birçoğu Go dilinde yazılmıştır. + +DevOps için Go'yu tercih edilir kılan bazı özellikler nelerdir? + +## Go dilinde programlar oluşturma ve dağıtma(deployment) + +Python gibi yorumlanan bir dilin DevOps rolünde kullanılmasının bir avantajı, programı çalıştırmadan önce Python'u derlemeniz gerekmemesidir. Özellikle daha küçük otomasyon görevleri için, derleme gerektiren yapı sürecini yavaşlatmaz. Bununla birlikte, **Go bir derlenmiş bir dil olmasına rağmen**, Go doğrudan makine koduna derler. Go, hızlı derleme süreleriyle de tanınır. + +## DevOps için Go vs Python + +Go programları statik olarak bağlanır. Bu, bir Go programı derlendiğinde, her şeyin tek bir yürütülebilir ikili dosyada dahil edildiği anlamına gelir ve çalıştırmak istediğiniz uzak makinede kurulması gereken harici bağımlılıklara ihtiyaç duyulmaz. Bu, Go programlarının dağıtımını Python programına kıyasla daha kolay hale getirir, çünkü Python harici kütüphaneler kullanır ve bu kütüphanelerin tümünün çalıştırmak istediğiniz uzak makinede yüklü olduğundan emin olmanız gerekir. + +Go, platformdan bağımsız bir dildir, yani Linux, Windows, macOS gibi tüm işletim sistemleri için yürütülebilir ikili dosyalar üretebilir ve bunu yapmak çok kolaydır. Python'da belirli işletim sistemleri için bu tür ikili dosyalar oluşturmak o kadar kolay değildir. + +Go, çok verimli bir dil olup hızlı derleme süresi ve hızlı çalışma süresi ile CPU ve bellek gibi kaynakların daha az kullanımı sağlar, özellikle Python'a kıyasla. Go dili için birçok optimizasyon uygulanmıştır, bu da onu çok verimli hale getirir. (Aşağıda kaynaklar bölümünde daha fazla ayrıntı bulabilirsiniz) + +Python'a karşılık olarak, genellikle belirli bir Python programını uygulamak için üçüncü taraf kütüphanelerinin kullanılmasını gerektiren durumlar olabilirken, Go dahili bir kütüphane içerir ve bu kütüphanenin çoğu DevOps için gereken işlevsellik doğrudan içerisine dahil edilmiştir. Bu, dosya işleme işlevselliği, HTTP web hizmetleri, JSON işleme, doğal destekli eşzamanlılık ve paralelizm, ayrıca dahili testler gibi işlevselliği içerir. + +Bu, Python'ı hiçbir şekilde hafife almak anlamına gelmez, sadece yazarın tercih ettiği nedenleri belirtmektedir. Go'nun tercih edilmesinin sebebi, çalışılan şirkette ve Go ile yazılım geliştirdikleri projede işin mantığına uymasıdır. + +Daha önce de belirtildiği gibi, ilk programlama dilini öğrendikten sonra diğer dilleri anlamak ve öğrenmek daha kolay olur. Muhtemelen hiçbir şirkette veya projede JavaScript ve Node JS uygulamalarının yönetimi, mimarisi, orkestrasyonu ve hata ayıklamasından kaçınmayacaksınız. + +## Recursos + +- [StackOverflow 2021 Developer Survey](https://insights.stackoverflow.com/survey/2021) +- [Why we are choosing Golang to learn](https://www.youtube.com/watch?v=7pLqIIAqZD4&t=9s) +- [Jake Wright - Learn Go in 12 minutes](https://www.youtube.com/watch?v=C8LgvuEBraI&t=312s) +- [Techworld with Nana - Golang full course - 3 hours 24 mins](https://www.youtube.com/watch?v=yyUHQIec83I) +- [**NOT FREE** Nigel Poulton Pluralsight - Go Fundamentals - 3 hours 26 mins](https://www.pluralsight.com/courses/go-fundamentals) +- [FreeCodeCamp - Learn Go Programming - Golang Tutorial for Beginners](https://www.youtube.com/watch?v=YS4e4q9oBaU&t=1025s) +- [Hitesh Choudhary - Complete playlist](https://www.youtube.com/playlist?list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N) + +Bu bölümde, önümüzdeki 6 gün boyunca yukarıda bahsedilen kaynaklar üzerinde çalışmak ve her gün notlar almak amaçlanmaktadır. Genellikle tam bir kurs için yaklaşık 3 saatlik bir süre ayrılmaktadır. Yazarın ilerlemek ve her bir kaynak üzerinde çalışmak için tam bir liste paylaşıldı, ancak zaman müsaade ederse. + +Görüşmek üzere [Gun 8](day08.md). diff --git a/2022/tr/Days/day08.md b/2022/tr/Days/day08.md new file mode 100644 index 0000000..bc878ef --- /dev/null +++ b/2022/tr/Days/day08.md @@ -0,0 +1,150 @@ +## Configurar tu entorno DevOps para Go y Hello World + +o dilini bilgisayarınıza kurmadan önce "Go öğrenme 101" modülünün her biri tarafından öğretilen "Hello World" uygulamasını oluşturmak için adımları takip etmek gerekmektedir. + +Go'nun kurulum sürecini belgelemek ve takip etmeyi kolaylaştırmak için görsellerle birlikte belgeleme yapacağız. (Ekran görüntüleri, bu satırları yazıldığı sırada mevcut olan en son sürümde alınmış olsalar bile güncel olmayabilir.) + +İlk olarak, [go.dev/dl](https://go.dev/dl/) adresine gideceğiz ve farklı işletim sistemleri için mevcut olan indirme seçeneklerini göreceğiz. + +![](Images/Day8_Go1.png) + +Muhtemelen kurulum yapmak istediğiniz bilgisayarın hangi işletim sistemini kullandığını biliyorsunuz, bu yüzden uygun indirmeyi seçin ve ardından kurmaya başlayabiliriz. Bu kılavuz için Windows kullanıyorum, temel olarak kurulum sihirbazında tüm varsayılan değerleri bırakabiliriz. + +![](Images/Day8_Go2.png) + +Ayrıca, daha önce kurulu bir Go sürümünüz varsa, yeni bir sürümü yüklemek için önce onu kaldırmanız gerekebilir. Windows, bu seçeneği kurulum sihirbazında sunar, böylece kaldırmayı ve aynı anda yüklemeyi yapabilirsiniz. + +Tamamlandıktan sonra, bir komut istemi veya terminal (Windows'ta CMD veya PowerShell) açmalısınız ve Go kurulumunun başarılı bir şekilde yapıldığını kontrol etmek için aşağıdaki komutu kullanarak sürümü kontrol edebilirsiniz: + +```shell +go version +``` + +Eğer aşağıdaki resimde gördüğümüz çıktıyı alamazsanız, Go kurulmamış demektir ve hata bulmak için adımlarınızı geriye doğru takip etmeniz gerekecektir." Türkçe çevirisi: Eğer aşağıdaki resimde gördüğümüz çıktıyı alamazsanız, Go kurulu değil demektir ve hatayı bulmak için adımlarınızı geriye doğru kontrol etmeniz gerekecektir. + +![](Images/Day8_Go3.png) + +Şimdi Go ortamımızı kontrol edeceğiz. Çalışma dizinlerinizin doğru şekilde yapılandırıldığından emin olmak her zaman iyidir. Aşağıda gördüğünüz gibi, aşağıdaki dizinin sistemde bulunduğundan emin olmamız gerekiyor. + +![](Images/Day8_Go4.png) + +Kontrol ettin mi? İzlemeye devam ediyor musun? Muhtemelen oraya gitmeye çalışırsan aşağıda gösterildiği gibi bir şey elde edersin. (Windows'tan) + +![](Images/Day8_Go5.png) + +Linux'ta, dizin aşağıdaki komutla oluşturulur: + +```shell +sudo apt install golang +``` +Bu yapıya sahip olarak: +```shell +#input +tree go -L 3 + +#output +go +└── pkg + └── mod + ├── cache + ├── cloud.google.com + ├── github.com + ├── go.etcd.io + ├── golang.org + ├── google.golang.org + ├── gopkg.in + ├── go.starlark.net@v0.0.0-20200306205701-8dd3e2ee1dd5 + ├── helm.sh + ├── k8s.io + ├── oras.land + └── sigs.k8s.io +``` + +Tamam, Windows'ta bu dizini oluşturmalıyız. PowerShell'de mkdir komutuyla kolayca yapılabilir. Ayrıca, Go klasörü içinde 3 klasör oluşturmamız gerekiyor, aşağıda da görebileceğiniz gibi. + +```shell +mkdir go + +cd go + +mkdir pkg,bin,src +``` + +![](Images/Day8_Go6.png) + +Go zaten yüklü ve çalışma dizinimiz aksiyon için hazır. Şimdi entegre bir geliştirme ortamına (IDE) ihtiyacımız var. Kullanabileceğiniz birçok seçenek var, ancak en yaygın olanı ve yazarın kullandığı Visual Studio Code veya Code'dur. (Çevirmen aynı zamanda vscode'u kullanıyor, ancak uzak makinelerde Vim daha iyi bir seçenek olabilir.) IDE'ler hakkında daha fazla bilgi edinebilirsiniz. + +Eğer henüz bilgisayarınıza VSCode'u indirip kurmadıysanız, buradan yapabilirsiniz. Göreceğiniz gibi farklı işletim sistemleri için seçenekleriniz olacak. [burdan](https://code.visualstudio.com/download). + +![](Images/Day8_Go7.png) + +Go'nun kurulumuyla aynı şekilde, varsayılan ayarları kullanarak VSCode'u indirecek, kuracak ve güncel tutacağız. Tamamlandıktan sonra VSCode'u açabilir, 'Dosya Aç' seçeneğini seçebilir ve daha önce oluşturduğumuz Go dizinine gezinebilirsiniz. + +![](Images/Day8_Go8.png) + +Muhtemelen güvenlikle ilgili bir açılır pencereyle karşılaşabilirsiniz, okuyun ve sonra yazarlara güvenmek için Evet düğmesine tıklamanızı düşünüyorsanız onaylayın. (Bu rehberde daha sonra güvenmemeniz gereken şeyleri açmaya başlarsanız sorumluluk kabul etmiyoruz). + +Şimdi daha önce oluşturduğumuz üç klasörü görmelisiniz. src klasörüne sağ tıklayın ve yeni bir klasör oluşturun. Klasörün adını 'turkce çeviri' olarak adlandıralım `Hello`. + +![](Images/Day8_Go9.png) + +Şu ana kadar her şey çok kolay, hatta çok kolay denebilir. Şimdi hiçbir şey anlamadan ilk Go programımızı oluşturacağız. + +Hello klasörü içinde `main.go` adında bir dosya oluşturuyoruz `Hello`. main.go'ya Enter tuşuna bastığınızda Go uzantısını ve aynı zamanda paketleri yüklemek isteyip istemediğinizi soracaktır. Bu paketleri birkaç adım önce yaptığımız boş pkg dosyasında kontrol edebilir ve içeride yeni paketler olduğunu fark edebilirsiniz. + +![](Images/Day8_Go10.png) + +Şimdi bu `Hello World` uygulamasını çalıştıralım, aşağıdaki kodu yeni main.go dosyanıza kopyalayın ve kaydedin + +```go +package main + +import "fmt" + +func main() { + fmt.Println("Hello #90DaysOfDevOps") +} +``` + +Anladığınız üzere, yukarıdaki kodun herhangi bir anlam ifade etmediği durumlar olabilir, ancak önümüzdeki günlerde fonksiyonlar, paketler ve diğer konular hakkında daha fazla bilgi edineceğiz. Şimdilik uygulamamızı çalıştıralım. + +Terminalde `Hello` klasörüne dönerek her şeyin düzgün çalıştığını kontrol edebiliriz. Aşağıdaki komutu kullanarak genel öğrenme programımızın çalışıp çalışmadığını kontrol edebiliriz. + +```shell +go run main.go +``` +Programımız bize Merhaba diyecektir. + +![](Images/Day8_Go11.png) + +Ancak burada bitmiyor, şimdi programımızı başka Windows makinelerinde çalıştırmak istiyorsak ne yapabiliriz? Aşağıdaki komutu kullanarak bir ikili dosya oluşturarak bunu yapabiliriz. + +```shell +go build main.go +``` + +![](Images/Day8_Go12.png) + +Bunu çalıştırırsak, aynı çıktıyı görürüz. + +```shell +#input +./main.exe + +#output +Hello #90DaysOfDevOps +``` + +## Recursos + +- [StackOverflow 2021 Developer Survey](https://insights.stackoverflow.com/survey/2021) +- [Why we are choosing Golang to learn](https://www.youtube.com/watch?v=7pLqIIAqZD4&t=9s) +- [Jake Wright - Learn Go in 12 minutes](https://www.youtube.com/watch?v=C8LgvuEBraI&t=312s) +- [Techworld with Nana - Golang full course - 3 hours 24 mins](https://www.youtube.com/watch?v=yyUHQIec83I) +- [**NOT FREE** Nigel Poulton Pluralsight - Go Fundamentals - 3 hours 26 mins](https://www.pluralsight.com/courses/go-fundamentals) +- [FreeCodeCamp - Learn Go Programming - Golang Tutorial for Beginners](https://www.youtube.com/watch?v=YS4e4q9oBaU&t=1025s) +- [Hitesh Choudhary - Complete playlist](https://www.youtube.com/playlist?list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N) + +Gorusmek Uzere [Gun 9](day09.md). + +![](Images/Day8_Go13.png) diff --git a/2022/tr/Days/day09.md b/2022/tr/Days/day09.md new file mode 100644 index 0000000..e58b837 --- /dev/null +++ b/2022/tr/Days/day09.md @@ -0,0 +1,72 @@ +## Hello World kodunun açıklamasını yapalım + +### Go Nasıl Çalışır? + +[Gun 8](day08.md) bölümünde, Go'nun bilgisayara nasıl kurulacağını ve ardından ilk Go uygulamamızı nasıl oluşturacağımızı görmüştük. + +Bu bölümde, kodun daha derinlemesine incelenmesine ve Go dilinin bazı konularının daha iyi anlaşılmasına bakacağız. + +### Derleme(Compiling) Nedir? + +Hello World kodunun [5 satırını gormek icin](Go/hello.go) önce derlemenin ne olduğunu biraz anlamamız gerekiyor. + +Python, Java, Go ve C++ gibi günlük olarak kullandığımız programlama dilleri, yüksek seviyeli dillerdir. Bu, insanlar tarafından okunabilir olmaları anlamına gelir. Bir makinenin bir programı çalıştırmaya çalıştığında, makinenin anlayabileceği bir formata sahip olmalıdır. Bu nedenle, insanlar tarafından okunabilir olan kodumuzu makine tarafından okunabilir bir hale (Makine kodu) çevirmemiz gerekmektedir. Bu eyleme **derleme** denir. + +![](Images/Day9_Go1.png) + +Eğer bahsettiğimiz konudan emin değilseniz, Day 8 bölümünde yaptıklarımızı tekrar gözden geçirmeniz daha iyi olur. Basit bir Hello World'u `main.go` dosyasında oluşturduk ve daha sonra `go build main.go` komutuyla yürütülebilir dosyamızı derledik. + +### Paketler Nelerdir? + +Bir paket, birlikte derlenen aynı dizindeki kaynak dosyalarının bir koleksiyonudur. İlgilendiğimiz durumda, aynı dizindeki bir grup .go dosyasıdır. Day 8 bölümünde gördüğümüz Hello klasörünü [Gun 8](day08.md) hatırlıyor musunuz? Daha karmaşık Go programları yaparken, programınızı oluşturan farklı .go dosyalarını içeren folder1, folder2 ve folder3 gibi klasörlerinizin olduğunu fark edebilirsiniz. + +Paketleri, başkalarının kodunu yeniden kullanabilmek için kullanırız, her şeyi sıfırdan yazmak zorunda değiliz. Belki de programımızın bir parçası olarak bir hesap makinesi istiyoruz, muhtemelen kullanabileceğiniz mevcut bir Go paketi bulabilirsiniz ve matematiksel işlemleri içeren fonksiyonları kodunuza aktarabilir, böylece çok zaman kazanabilirsiniz. Kod paylaşımının ve Açık Kaynaklılığın güzelliği burada ortaya çıkar. + +Go, kodunuzu paketlere organize etmenizi ve böylece kodun yeniden kullanılabilirliğini ve bakımını kolaylaştırmanızı teşvik eder. + +### Hello #90DaysOfDevOps satır satır + +Şimdi Hello #90DaysOfDevOps dosyamızdaki main.go dosyasına her satırı inceleyerek bakalım. + +![](Images/Day9_Go2.png) + +İlk satırda `package main` ifadesini görüyorsunuz. Bu, bu dosyanın main adında bir pakete ait olduğunu gösterir. Tüm .go dosyalarının bir pakete ait olması gerekmektedir ve ayrıca ilk satırda `package ` şeklinde bir ifade bulunması gerekmektedir. + +Bir paketin adı istediğiniz gibi olabilir. Ancak, bu durumda başlangıç noktası olarak kullanılacak olan bu paketi `main` olarak adlandırmalıyız, bu bir kuraldır. + +![](Images/Day9_Go3.png) + +Kodumuzu derlemek ve çalıştırmak istediğimiz her zaman, makineye başlangıç noktasını belirtmemiz gerekmektedir. Bunu, main adında bir fonksiyon yazarak yaparız. Makine, programın giriş noktasını bulmak için main adında bir fonksiyon arayacaktır. + +Bir fonksiyon, belirli bir görevi gerçekleştirebilen bir kod bloğudur ve tüm programda kullanılabilir. + +func kullanarak herhangi bir isimle bir `fonksiyon` tanımlayabilirsiniz, ancak bu durumda, kodun başladığı noktayı temsil ettiği için ona `main` adını vermemiz gerekmektedir. + +![](Images/Day9_Go4.png) + +Şimdi, kodumuzun 3. satırına, yani import ifadesine bakalım. Bu, başka bir paketi ana programımıza dahil etmek istediğimizi gösterir. fmt, Go tarafından sağlanan bir standart pakettir ve `Println()` işlevini içerir. Bu paketi içe aktardığımız için, 6. satırda kullanabiliriz. Programınıza dahil edebileceğiniz ve kodunuzda yeniden kullanabileceğiniz birçok standart paket vardır, böylece sıfırdan yazma zahmetinden kurtulabilirsiniz. [Go Standard Library](https://pkg.go.dev/std) + +![](Images/Day9_Go5.png) + +Burada bulunan `Println()` ifadesi, başarıyla yürütülen yürütülebilir dosyanın terminalde standart çıktıyı yazdırmanın bir yoludur. Parantez içindeki iletiyi istediğiniz gibi değiştirebilirsiniz. + +![](Images/Day9_Go6.png) + +### TLDR + +- **1. satır** = Bu dosya, `main` adında bir pakete ait olacak ve içinde programın giriş noktasını içerdiği için main olarak adlandırılması gerekmektedir. +- **3. satır** = `Println()` işlevini kullanabilmek için fmt paketini içe aktarmamız gerekmektedir ve bunu 6. satırda kullanabiliriz. +- **5. satır** = Gerçek giriş noktası, `main` fonksiyonudur. +- **6. satır** = Bu, "Hello #90DaysOfDevOps" ifadesini terminalimize yazdırmamızı sağlar. + +## Kaynaklar + +- [StackOverflow 2021 Developer Survey](https://insights.stackoverflow.com/survey/2021) +- [Why we are choosing Golang to learn](https://www.youtube.com/watch?v=7pLqIIAqZD4&t=9s) +- [Jake Wright - Learn Go in 12 minutes](https://www.youtube.com/watch?v=C8LgvuEBraI&t=312s) +- [Techworld with Nana - Golang full course - 3 hours 24 mins](https://www.youtube.com/watch?v=yyUHQIec83I) +- [**NOT FREE** Nigel Poulton Pluralsight - Go Fundamentals - 3 hours 26 mins](https://www.pluralsight.com/courses/go-fundamentals) +- [FreeCodeCamp - Learn Go Programming - Golang Tutorial for Beginners](https://www.youtube.com/watch?v=YS4e4q9oBaU&t=1025s) +- [Hitesh Choudhary - Complete playlist](https://www.youtube.com/playlist?list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N) + +Gorusmek Uzere [Gun 10](day10.md). diff --git a/2022/tr/Days/day10.md b/2022/tr/Days/day10.md new file mode 100644 index 0000000..28a1b7d --- /dev/null +++ b/2022/tr/Days/day10.md @@ -0,0 +1,113 @@ +## Go Workspace(Calısma Alanı) + +Go Çalışma Alanı hakkında daha fazla bilgi vermemiz gerekiyor. [Gun 8](day08.md) 'de, Go'yu başlatmak ve `Hello #90DaysOfDevOps` demosuna ulaşmak için Go çalışma alanı hakkında kısaca konuştuk. + +Hatırlıyor musunuz, varsayılan değerleri seçtik ve daha sonra zaten tanımlanmış GOPATH'deki Go klasörümüzü oluşturduk, değil mi? Ancak aslında GOPATH'i istediğiniz yere değiştirebilirsiniz. + +Eğer + +```shell +echo $GOPATH +``` + +Çıktı benimkine benzer olmalı (kullanıcı adınızla birlikte): + +```shell +/home/michael/projects/go +``` +> **Linux'ta config yapmanız gerekiyor** +> +> Benim durumumda, zsh shell kullanıyorum ve `$HOME/.zshrc` dosyasında yapılır. Eğer bash kullanıyorsanız, `$HOME/.bashrc` dosyasında yapılır. +> +> Sadece şu satırı eklememiz gerekiyor: +> ```shell +> export GOPATH=$HOME/work +> export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin +> ``` +> +> ![](Images/Day10_Go0.png) +> +> Kabuğu yeniden başlatın ve önce bahsedilen `echo` komutunu çalıştırın. +> +> ```shell +> exec zsh +> echo $GOPATH +> ``` +> +> ![](Images/Day10_Go0b.png) +> +> Daha fazla bilgi icin [resmi dokuman](https://go.dev/doc/install) + +İşte burada önceki günlerde oluşturduğumuz 3 directory'yi oluşturduğumuz yer **src**, **pkg** ve **bin** . + +![](Images/Day10_Go1.png) + +- **src** Bu, tüm Go programlarınızın ve projelerinizin depolandığı yerdir. Bu, Go depolarınızın isim alanı paket yönetimini yönetir. İşte bizim Hello projesi için Hello klasörünü gördüğümüz yer." turkçe çevirisidir. + +![](Images/Day10_Go2.png) + +- **pkg** Bu, programlara yüklenmiş veya yüklenmiş olan paketlerin arşivlenmiş dosyalarının bulunduğu yerdir. Bu, kullanılan paketlerin değiştirilip değiştirilmediğine bağlı olarak derleme sürecini hızlandırmaya yardımcı olur. + +![](Images/Day10_Go3.png) + +- **bin** Bu, derlenmiş tüm ikili dosyaların depolandığı yerdir. + +![](Images/Day10_Go4.png) + +Hello #90DaysOfDevOps programımız karmaşık bir program olmadığından, burada başka bir harika kaynaktan alınmış daha karmaşık bir Go Programı örneği bulunmaktadır. Bu kaynağa göz atmanızı öneririm. [GoChronicles](https://gochronicles.com/) + +![](Images/Day10_Go5.png) + +Hello #90DaysOfDevOps" programımız karmaşık bir program değil. Biraz fikir sahibi olmanız için, başka bir önemli kaynaktan alınmış ve değerli bir incelemeyi hak eden daha karmaşık bir Go programı örneği şu şekildedir. [GoChronicles](https://gochronicles.com/) + +## Derleme(Compiling) & Running Code + +[Gun 9](day09.md)'da kod derlemesine kısa bir giriş yaptık, ancak biraz daha derinlemesine inebiliriz. Devam edelim. + +Kodumuzu çalıştırmak için öncelikle **derleme**miz gerekiyor. Go içinde bunu yapmanın üç farklı yolu vardır. + +- `go build` +- `go install` +- `go run` + +Go kurulumuyla elde ettiğimiz şeylere, bahsettiğimiz derleme aşamasına geçmeden önce bir göz atalım. + +Go'yu [Gun 8](day08.md) 'de yüklediğimizde, Go araçları olarak adlandırılan bir şeyi yüklemiş olduk. Bu araçlar, Go kaynak dosyalarımızı oluşturmamıza ve işlememize olanak sağlayan çeşitli programlardan oluşur. Bu araçlar arasında `Go` komutu da bulunur. + +Ayrıca, Go'nun standart kurulumunda bulunmayan, projeniz için oldukça faydalı olabilecek ek araçlar da yüklenebilir. + +Terminalinizi açıp `go` komutunu yazarsanız aşağıdaki resimdeki gibi bir çıktı almanız gerekiyor. Daha sonra "Additional Help Topics" (Ek Yardım Konuları) gibi ek yardım konularını göreceksiniz, ancak şu anda bunlara odaklanmamıza gerek yok. + +![](Images/Day10_Go6.png) + +> [Go Yardım Dokumanı](Go/Ayuda_go_traducida.md). + +Eğer önceki günlerden buradaysan, en azından ikisini zaten kullandığımızı hatırlayacaksınız. [Gun 8](day08.md). + +![](Images/Day10_Go7.png) + +Öğreneceğimiz komutlar `build`, `install` ve `run`. + +![](Images/Day10_Go8.png) + +- `go run` - komut satırında belirtilen .go dosyalarından oluşan ana paketi derler ve çalıştırır. Komut geçici bir klasörde derlenir. +- `go build` - Go build komutu, paketleri ve bağımlılıkları derlerken, paketi geçerli dizinde derler. Bu şekilde `main` paketi, yürütülebilir dosyayı geçerli dizine yerleştirir. Aksi takdirde, yürütülebilir dosyayı `pkg` klasörüne yerleştirir. `go build` ayrıca, Go ile uyumlu herhangi bir işletim sistemi için yürütülebilir bir dosya oluşturmanıza olanak tanır. +- `go install` - `go install` komutu, `go build` ile aynı işlemi yapar, ancak yürütülebilir dosyayı `bin` klasörüne yerleştirir. + +`go install` komutunu zaten gördük, ancak isterseniz tekrar yapabilirsiniz. Hatırlayacağınız gibi, bu komut yürütülebilir dosyayı `bin` klasörüne yerleştirir. + +![](Images/Day10_Go9.png) + +Eğer aşağıdaki çalma listeleri veya videoları takip ediyorsanız, bu notlarda çevirilen bölümlerin bir kısmını göreceksiniz. Bu, genel olarak ihtiyaç duyduğunuz birçok alanın çok daha iyi bir anlayışını sağlayacak kaynaklardır. Ancak, 7 günlük (veya 7 saatlik) süreyi en ilgili konular üzerinde belgelemeye çalışıyoruz. + +## Kaynaklar + +- [StackOverflow 2021 Developer Survey](https://insights.stackoverflow.com/survey/2021) +- [Why we are choosing Golang to learn](https://www.youtube.com/watch?v=7pLqIIAqZD4&t=9s) +- [Jake Wright - Learn Go in 12 minutes](https://www.youtube.com/watch?v=C8LgvuEBraI&t=312s) +- [Techworld with Nana - Golang full course - 3 hours 24 mins](https://www.youtube.com/watch?v=yyUHQIec83I) +- [**NOT FREE** Nigel Poulton Pluralsight - Go Fundamentals - 3 hours 26 mins](https://www.pluralsight.com/courses/go-fundamentals) +- [FreeCodeCamp - Learn Go Programming - Golang Tutorial for Beginners](https://www.youtube.com/watch?v=YS4e4q9oBaU&t=1025s) +- [Hitesh Choudhary - Complete playlist](https://www.youtube.com/playlist?list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N) + +Gorusmek Uzere [Gun 11](day11.md). diff --git a/2022/tr/Days/day11.md b/2022/tr/Days/day11.md new file mode 100644 index 0000000..b97c901 --- /dev/null +++ b/2022/tr/Days/day11.md @@ -0,0 +1,169 @@ +Bugün, Değişkenler, Sabitler ve Veri Türleri konularına bir göz atacağız ve yeni bir program yazacağız. [Techworld con Nana](https://www.youtube.com/watch?v=yyUHQIec83I) + + +## Go'da Değişkenler ve Sabitler + +Uygulamamızı planlamaya başlayalım. #90DaysOfDevOps meydan okumasında kaç gün kaldığımızı bize söyleyen bir program üzerinde çalışmak iyi bir fikir gibi görünüyor. + +Burada dikkate almanız gereken ilk şey, uygulamayı inşa ettikçe, katılımcılarımızı karşılayarak ve kullanıcıya tamamladığı gün sayısı hakkında geri bildirim vererek, program boyunca #90DaysOfDevOps terimini birçok kez kullanabileceğiz. Bu nedenle, programımız için #90DaysOfDevOps isimli bir değişken yapma fırsatımız var. + +- Değişkenler değerleri depolamak için kullanılır. +- Bilgilerimizi veya saklanan değerlerimizi içeren küçük kutular gibidirler (Bu, başlayanlara anlatılan şekildedir 😊). +- Bu değişkeni program boyunca kullanabiliriz, bu da meydan okuma veya değişken değişirse, sadece bir yerde değeri değiştirmemiz gerektiği anlamına gelir. Bu, bu değeri değiştirerek topluluktaki diğer meydan okumalara taşıyabileceğimiz anlamına gelir. + +Bu Go programımızda bunu deklare etmek için değişkenler için bir **anahtar kelime** kullanarak bir değer tanımlıyoruz. Bu, daha sonra göreceğiniz `func main` kod bloğu içinde kalacaktır. Anahtar kelimeler hakkında daha fazla bilgiyi [burada](https://go.dev/ref/spec#Keywords)bulabilirsiniz. + +Değişken adlarının açıklayıcı olduğundan emin olun. Bir değişkeni tanımlarsanız, onu kullanmalısınız; aksi takdirde bir hata alırsınız. Bu, kullanılmayan ölü kodu önlemek içindir. Aynı durum kullanılmayan paketler için de geçerlidir. + +```go +var challenge = "#90DaysOfDevOps" +``` + +Yukarıdakini belirledikten sonra, aşağıdaki kod parçasında bunu kullanacağız. Aşağıdaki çıktıda, değişkeni kullandığımızı görebilirsiniz. + +```go +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + fmt.Println("Welcome to", challenge, "") +} +``` + +Yukarıdaki kodu [day11_example1.go](Go/day11_example1.go) dosyasında bulabilirsiniz. + +Aşağıdaki çıktıyı oluşturmak için yukarıdaki örneği derleyip çalıştırırsanız: + +![](Images/Day11_Go1.png) + +Bu özel meydan okumanın 90 gün olduğunu biliyoruz, ancak bir sonraki meydan okuma belki 100 gün olacak, bu yüzden burada bize yardımcı olacak bir değişken tanımlayacağız. Bununla birlikte, programımız için bunu bir sabit olarak tanımlamak istiyoruz. Sabitler, değişkenler gibi, ancak değerleri kod içinde değiştirilemez (ancak daha sonra aynı kodla yeni bir uygulama oluşturabilir ve sabiti değiştirebiliriz. 90, bu uygulamayı çalıştırırken değişmeyecektir). + + +Kodumuza `const` ekleyerek bunu yapalım ve bunu yazdırmak için başka bir satır kod ekleyelim. + +```go +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + const daystotal = 90 + + fmt.Println("Welcome to", challenge, "") + fmt.Println("This is a", daystotal, "challenge") +} +``` + + +Yukarıdaki kodu [day11_example2.go](Go/day11_example2.go) dosyasında bulabilirsiniz. + +Ardından `go build` işlemini tekrar gerçekleştirip çalıştırdığımızda aşağıdaki sonucu göreceğiz. + + +![](Images/Day11_Go2.png) + +Son olarak, tamamladığımız gün sayısı için başka bir değişken ekleyeceğiz. Ancak bu programın sonu olmayacak, daha fazla işlevsellik eklemek için Día 12 programımıza devam edeceğiz. + +Aşağıda, tamamlanan gün sayısıyla birlikte `dayscomplete` değişkeninin eklenmiş halini göreceksiniz. + +```go +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + const daystotal = 90 + var dayscomplete = 11 + + fmt.Println("Welcome to", challenge, "") + fmt.Println("This is a", daystotal, "challenge and you have completed", dayscomplete, "days") + fmt.Println("Great work") +} +``` + +Önceki kodu [day11_example3.go](Go/day11_example3.go) dosyasında bulabilirsiniz. + +Tekrar `go build` komutuyla derleyip oluşturulan dosyayı çalıştırarak veya doğrudan `go run` komutunu kullanarak çalıştıralım. + + +![](Images/Day11_Go3.png) + +Kodu daha okunabilir ve düzenlenebilir hale getirmek için bazı örnekler bulunmaktadır. Şimdiye kadar `Println` kullanıyorduk, ancak `%v` ile değiştirerek kodumuzu basitleştirebiliriz, bu şekilde değişkenlerimizi kod satırının sonunda sırayla tanımlamış oluruz. Ayrıca, bir satır atlamak için `\n` kullanacağız. + +`%v` kullanarak varsayılan bir değere sahip olacağız, ancak diğer seçenekleri fmt paketi belgelerinde bulabilirsiniz. + +Daha da ilginç hale geliyor, örnek kodu [day11_example4.go](Go/day11_example4.go) dosyasında görebilirsiniz. + +Değişkenler ayrıca daha basit bir formatta da tanımlanabilir. var ve "tip" yerine, aynı işlevselliği elde etmek için aşağıdaki şekilde kodlayabilirsiniz, bu da daha temiz ve basit bir görünüm sağlar. Bu sadece değişkenler için çalışır, sabitler için geçerli değildir. + +```go +func main() { + challenge := "#90DaysOfDevOps" + const daystotal = 90 +``` + +## Veri Tipleri + +Önceki örneklerde değişkenlerin tipini belirtmedik. Bunun sebebi, bir değer atadığımızda Go'nun hangi tür olduğunu bilmek veya en azından depolanan değere dayanarak tahmin edebilmesidir. Ancak, bir kullanıcının bunu girmesini istiyorsak belirli bir tipe ihtiyacımız olacaktır. + +Şu ana kadar kodumuzda String'ler ve Integer'lar kullandık. Integer'lar gün sayısı için kullanılırken, String'ler meydan okuma adını içeriyor. + +Her veri tipinin farklı işlevleri ve davranışları olduğunu unutmak önemlidir. Örneğin, Integer'lar çarpılabilirken, String'ler çarpılamaz. + +Dört kategori vardır: + +- **Temel Veri Tipleri**: Sayılar, String'ler ve Boolean'lar bu kategoriye girer. +- **Toplu Veri Tipleri**: Diziler ve struct'lar bu kategoriye girer. +- **R**eferans Veri Tipleri**: İşaretçiler (pointers), dilimler (slices), haritalar (maps), fonksiyonlar (functions) ve kanallar (channels) bu kategoriye dahildir. +- **Arayüz Veri Tipi** + +Veri tipi, programlamada önemli bir kavramdır çünkü değişkenlerin değerlerinin boyutunu ve türünü belirtir. + +Go, statik olarak yazılmış bir dildir, yani bir değişkenin tipi bir kez tanımlandığında, yalnızca o türde veri depolayabilir. + +Go'nun üç temel veri tipi vardır: + + +- **bool**: Boolean değerini temsil eder, true veya false olabilir. +- **Numeric**: Integer türleri, ondalık noktalı sayılar ve karmaşık türleri temsil eder. +- **string**: Bir string değerini temsil eder. + +Bu kaynak, veri tipleri hakkında detaylı bilgi içerir: [Golang by example](https://golangbyexample.com/all-data-types-in-golang-with-examples/). + +Bir değişkene tür atamamız gerekiyorsa aşağıdaki gibi yapabiliriz: + +```go +var TwitterHandle string +var DaysCompleted uint +``` + +Go, değer atanan değişkenleri ima ettiği için bu değerleri şu şekilde yazdırabiliriz: + +```go +fmt.Printf("challenge is %T, daystotal is %T, dayscomplete is %T\n", conference, daystotal, dayscomplete) +``` + +Farklı türlerde çok sayıda integer ve float bulunmaktadır. + + +- **int** = Tam sayıları temsil eder. +- **unint** = Pozitif tam sayıları temsil eder. +- **floating point types** = Ondalık noktalı sayıları içeren türlerdir. + +## Recursos + +- [StackOverflow 2021 Developer Survey](https://insights.stackoverflow.com/survey/2021) +- [Why we are choosing Golang to learn](https://www.youtube.com/watch?v=7pLqIIAqZD4&t=9s) +- [Jake Wright - Learn Go in 12 minutes](https://www.youtube.com/watch?v=C8LgvuEBraI&t=312s) +- [Techworld with Nana - Golang full course - 3 hours 24 mins](https://www.youtube.com/watch?v=yyUHQIec83I) +- [**NOT FREE** Nigel Poulton Pluralsight - Go Fundamentals - 3 hours 26 mins](https://www.pluralsight.com/courses/go-fundamentals) +- [FreeCodeCamp - Learn Go Programming - Golang Tutorial for Beginners](https://www.youtube.com/watch?v=YS4e4q9oBaU&t=1025s) +- [Hitesh Choudhary - Complete playlist](https://www.youtube.com/playlist?list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N) + +Bir sonraki günde, kullanıcının programımıza veri girebilmesi için giriş işlevselliği eklemeye başlayacağız, örneğin tamamlanan günleri girebilmesi gibi. + +Gorusmek Uzere [Gun 12](day12.md). diff --git a/2022/tr/Days/day12.md b/2022/tr/Days/day12.md new file mode 100644 index 0000000..2cc1f39 --- /dev/null +++ b/2022/tr/Days/day12.md @@ -0,0 +1,80 @@ +## Kullanıcıdan girdi almak için işaretçilerle ve tamamlanmış bir programla devam edeceğiz. + +Dün ([Gun 11](day11.md)) kendi içinde yer alan ilk Go programımızı oluşturduk ve kullanıcıdan giriş almak için değişkenleri kodumuzun içine yerleştirdik ve değerlerini verdik. Şimdi, kullanıcıdan giriş alarak son mesajın değişkenine değer vereceğiz. + +Ne heyecan verici! + +## Kullanıcının Girişini Almak + +Bunu yapmadan önce, kullanıcı girişini almadan önce deneme için değişkenlerimizi dolaşan uygulamamıza bir göz atalım. + +Dün kodumuzu şu şekilde tamamlamıştık: [day11_example4.go](Go/day11_example4.go). + +Manuel olarak `challenge, daystotal ve dayscomplete` değişkenlerimizi tanımladık. + +Şimdi, `TwitterName` adında yeni bir değişken ekleyeceğiz. Kodun nasıl olduğunu [day12_example1.go](Go/day12_example1.go) dosyasında görebilirsin ve bu kodu çalıştırırsak çıktımız şu şekildedir. + +![](Images/Day12_Go1.png) + +12.gününde olduğumuzda bu `dayscomplete` değerini her gün değiştirmemiz ve kodumuzu her gün derlememiz gerekecektir, eğer sabit bir değer olarak yazılırsa, bu pek cazip gelmeyebilir. + +Bu yüzden, kullanıcının Twitter adını ve tamamlanan gün sayısını girerek değerleri programımızda elde etmek istiyoruz. Bunun için `fmt` paketinin başka bir giriş fonksiyonunu kullanabiliriz. + + `fmt` paketi hakkında özetleyecek olursak, biçimlendirilmiş giriş/çıkış (I/O) için farklı işlevler: + +- Mesajları yazdırma +- Kullanıcıdan girişi almak +- Bir dosyaya yazmak + +Bir değişkenin değerini programda atanması yerine, kullanıcıdan giriş olarak almak istiyoruz. + +```go +fmt.Scan(&TwitterName) +``` + +Değişkenin önünde `&` işaretini de kullandığımıza dikkat edin. Bu, bir işaretçi olarak adlandırılır ve bunu bir sonraki bölümde göreceğiz. + +[day12_example2.go](Go/day12_example2.go) dosyasındaki kodda, kullanıcıdan `TwitterName` ve `DaysCompleted` değişkenlerinde belirtilen bilgileri girmesini istiyoruz. + +Şimdi programımızı çalıştıralım ve her iki değişkenin girişini aldığımızı göreceksiniz. + +![](Images/Day12_Go2.png) + +VHarika, kullanıcıdan bir giriş aldık ve aldığımız değerlerle bir mesajı yazdırdık. Ancak, meydan okumamızın kaç gün kaldığını programımızın söylemesini nasıl sağlarız? + +Bunun için, `remainingDays` adında bir değişken oluşturacağız ve buna "90" integer değerini atayacağız. Ardından, "tamamlanan günler" girişini aldığımızda kalan günleri yazdırmak için bu değeri değiştirmemiz gerekiyor, yani bir çıkarma işlemi yapmamız gerekiyor. + +```go +remainingDays = remainingDays - DaysCompleted +``` + + +Tamamlanan programın görünümünü day12_example3.go dosyasında görebilirsiniz. + +Şimdi bu programı çalıştırırsanız, kullanıcının girişi ve `remainingDays` değişkeninin değeri temel alınarak basit bir hesaplama yapıldığını görebilirsiniz. + +![](Images/Day12_Go3.png) + +## İşaretçi Nedir? (Özel Değişkenler) + +Bir işaretçi, başka bir değişkenin bellek adresine işaret eden (özel) bir değişkendir. + +Daha detaylı bir açıklamayı [geeksforgeeks](https://www.geeksforgeeks.org/pointers-in-golang/) adresinde bulabilirsin. + +Şimdi, kodumuzu basitleştirelim ve bir yazdırma komutumuzun önüne `&` işaretini ekleyerek, işaretçinin bellek adresini elde edelim. Örnek kodu [day12_example4.go](Go/day12_example4.go) dosyasında bulabilirsin. + +Bu kodu çalıştırarak sonucu gözlemleyelim. + +![](Images/Day12_Go4.png) + +## Kaynaklar + +- [StackOverflow 2021 Developer Survey](https://insights.stackoverflow.com/survey/2021) +- [Why we are choosing Golang to learn](https://www.youtube.com/watch?v=7pLqIIAqZD4&t=9s) +- [Jake Wright - Learn Go in 12 minutes](https://www.youtube.com/watch?v=C8LgvuEBraI&t=312s) +- [Techworld with Nana - Golang full course - 3 hours 24 mins](https://www.youtube.com/watch?v=yyUHQIec83I) +- [**NOT FREE** Nigel Poulton Pluralsight - Go Fundamentals - 3 hours 26 mins](https://www.pluralsight.com/courses/go-fundamentals) +- [FreeCodeCamp - Learn Go Programming - Golang Tutorial for Beginners](https://www.youtube.com/watch?v=YS4e4q9oBaU&t=1025s) +- [Hitesh Choudhary - Complete playlist](https://www.youtube.com/playlist?list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N) + +Gorusmek Uzere [Gun 13](day13.md). diff --git a/2022/tr/Days/day13.md b/2022/tr/Days/day13.md new file mode 100644 index 0000000..0d7d964 --- /dev/null +++ b/2022/tr/Days/day13.md @@ -0,0 +1,318 @@ +## Yeni Uygulamamızla İlerlemenizi Tweetleyin + +Bugün bu programlama dilini incelediğimiz son gün. Go'nun yüzeyine henüz biraz bile değinmedik, ancak bu bir başlangıç. Şimdi, kendi başımıza daha fazla ilgilenmeli, heyecanlanmalı ve derinlemesine öğrenmeliyiz. + +Ancak son günü uygulamamıza yeni bir özellik eklemek için kullanalım. Oluşturduğumuz paketleri kullanarak uygulamamızın sadece ilerlemenizi ekranda güncellemesini değil, aynı zamanda meydan okuma ayrıntılarını ve durumunuzu içeren bir tweet atmasını sağlayacağız. 😊 + + +## Tweet Atma Yeteneği Eklemek + +Bunun çalışması için ilk yapmamız gereken, Twitter Geliştirici API'sine erişimimizi yapılandırmaktır. + +[Twitter Gelistirme Platformuna Gidin](https://developer.twitter.com) na gidin ve Twitter kullanıcı adınız ve bilgilerinizle oturum açın. İçeri girdikten sonra, aşağıdaki gibi bir şey görmelisiniz, ancak daha önceden oluşturduğum uygulama olmadan. + + +![](Images/Day13_Go1.png) + +Buradan daha yüksek bir erişim talep edebilirsiniz, bu biraz zaman alabilir. + +Sonra "Projects & Apps" bölümünü seçerek kendi uygulamamızı oluşturmalıyız. Sınırlar, hesabınızın erişim düzeyine bağlıdır; essential ile sadece bir uygulama ve bir proje, elevated ile 3 uygulama sahip olabilirsiniz. + +![](Images/Day13_Go2.png) + +Uygulamanıza bir ad verin. + +![](Images/Day13_Go3.png) + +Sonra API token'larınızı alacaksınız. Bunları güvenli bir yerde saklamanız gerekiyor, çünkü daha sonra Go uygulamanızla kullanacağız. (Ekran görüntüsündeki tokenları kullanmaya çalışmayın, bu uygulama zaten silindi). + +![](Images/Day13_Go4.png) + +Şimdi uygulamamız oluşturuldu, (yukarıdaki örnekteki "test90" adı alındığı için uygulamanın adı değiştirildi, bu isimler benzersiz olmalıdır). + + +![](Images/Day13_Go5.png) + +Önceden kaydettiğimiz anahtarlarımız tüketici anahtarlarımız olarak bilinir ve erişim belirteçlerimiz ve gizlilik bilgilerimiz de gereklidir. Bu bilgileri "Keys & Tokens" sekmesini kullanarak toplayabiliriz. + +![](Images/Day13_Go6.png) + +Şimdilik Twitter Geliştirici Portalı'nda işimiz bitti. Anahtarlarınızı güvende tuttuğunuzdan emin olun, çünkü daha sonra ihtiyacımız olacak. + +## Go Twitter Bot + +Unutmayın, uygulamamızda başlatacağımız kod, [day13_example1](Go/day13_example1.go) dosyasındaki koddur, ancak önce tweet'i göndermek için doğru kodun olduğunu kontrol etmemiz gerekiyor. + +Şimdi çıktımızı veya mesajımızı bir tweet olarak Twitter'a iletme kodunu düşünelim. [go-twitter](https://github.com/dghubble/go-twitter) kütüphanesini (Go için Twitter API'si için bir istemci kütüphanesi) kullanacağız. + +Ana uygulamamıza koymadan önce, test etmek için `src` klasöründe go-twitter-bot adında yeni bir dizin oluşturun ve klasörde `go mod init github.com/michaelcade/go-Twitter-bot` komutunu çalıştırın, bu yeni bir `go.mod` dosyası oluşturacaktır. Şimdi yeni main.go dosyasını yazmaya başlayabilir ve deneyebiliriz. + +Twitter Geliştirici Portalı'ndan aldığımız anahtarları, belirteçleri ve gizlilik bilgilerini kullanmamız gerekiyor. Bunları ortam değişkenlerimize ayarlayacağız. Bu, kullandığınız işletim sistemine bağlı olacaktır: + +**Windows** + +```cmd +set CONSUMER_KEY +set CONSUMER_SECRET +set ACCESS_TOKEN +set ACCESS_TOKEN_SECRET +``` + +**Linux / macOS** + +```shell +export CONSUMER_KEY +export CONSUMER_SECRET +export ACCESS_TOKEN +export ACCESS_TOKEN_SECRET +``` +Bu noktada, [day13_example2](Go/day13_example2.go) dosyasındaki kodu inceleyin. Burada, anahtarları, gizlilik bilgilerini ve belirteçleri tanımlamak için bir yapı kullanılıyor. + +Ardından, bu kimlik bilgilerini analiz etmek ve Twitter API'siyle bağlantı kurmak için bir `func` bulunmaktadır. + +Şimdi tweet gönderme zamanı! 🐦 + +```go +package main + +import ( + // other imports + "fmt" + "log" + "os" + + "github.com/dghubble/go-twitter/twitter" + "github.com/dghubble/oauth1" +) + +// Credentials stores all of our access/consumer tokens +// and secret keys needed for authentication against +// the twitter REST API. +type Credentials struct { + ConsumerKey string + ConsumerSecret string + AccessToken string + AccessTokenSecret string +} + +// getClient is a helper function that will return a twitter client +// that we can subsequently use to send tweets, or to stream new tweets +// this will take in a pointer to a Credential struct which will contain +// everything needed to authenticate and return a pointer to a twitter Client +// or an error +func getClient(creds *Credentials) (*twitter.Client, error) { + // Pass in your consumer key (API Key) and your Consumer Secret (API Secret) + config := oauth1.NewConfig(creds.ConsumerKey, creds.ConsumerSecret) + // Pass in your Access Token and your Access Token Secret + token := oauth1.NewToken(creds.AccessToken, creds.AccessTokenSecret) + + httpClient := config.Client(oauth1.NoContext, token) + client := twitter.NewClient(httpClient) + + // Verify Credentials + verifyParams := &twitter.AccountVerifyParams{ + SkipStatus: twitter.Bool(true), + IncludeEmail: twitter.Bool(true), + } + + // we can retrieve the user and verify if the credentials + // we have used successfully allow us to log in! + user, _, err := client.Accounts.VerifyCredentials(verifyParams) + if err != nil { + return nil, err + } + + log.Printf("User's ACCOUNT:\n%+v\n", user) + return client, nil +} +func main() { + fmt.Println("Go-Twitter Bot v0.01") + creds := Credentials{ + AccessToken: os.Getenv("ACCESS_TOKEN"), + AccessTokenSecret: os.Getenv("ACCESS_TOKEN_SECRET"), + ConsumerKey: os.Getenv("CONSUMER_KEY"), + ConsumerSecret: os.Getenv("CONSUMER_SECRET"), + } + + client, err := getClient(&creds) + if err != nil { + log.Println("Error getting Twitter Client") + log.Println(err) + } + + tweet, resp, err := client.Statuses.Update("A Test Tweet from the future, testing a #90DaysOfDevOps Program that tweets, tweet tweet", nil) + if err != nil { + log.Println(err) + } + log.Printf("%+v\n", resp) + log.Printf("%+v\n", tweet) +} + +``` + +Yukarıdaki işlem, bir hata mesajıyla birlikte başarısız olabilir veya herhangi bir mesaj olmadan başarılı olabilir. Başarılı olduğunda, kodda belirtilen mesajla bir tweet gönderilmiş olacaktır. + +## Go-Twitter-Bot ile kendi uygulamamızı birleştirme + +Şimdi bu iki parçayı `main.go` dosyamıza birleştirmemiz gerekiyor. Eminim ki orada biri daha iyi bir yol olduğunu söylüyor ve belki de birden fazla `.go` dosyası olabileceğini düşünüyorsunuzdur, bu daha mantıklı olabilir ama bu yöntem de çalışır. + +Birleştirilmiş kod tabanını [day13_example3](Go/day13_example3.go) dosyasında görebilirsiniz, ancak aşağıda da gösterilecektir. + +```go +package main + +import ( + // other imports + "fmt" + "log" + "os" + + "github.com/dghubble/go-twitter/twitter" + "github.com/dghubble/oauth1" +) + +// Credentials stores all of our access/consumer tokens +// and secret keys needed for authentication against +// the twitter REST API. +type Credentials struct { + ConsumerKey string + ConsumerSecret string + AccessToken string + AccessTokenSecret string +} + +// getClient is a helper function that will return a twitter client +// that we can subsequently use to send tweets, or to stream new tweets +// this will take in a pointer to a Credential struct which will contain +// everything needed to authenticate and return a pointer to a twitter Client +// or an error +func getClient(creds *Credentials) (*twitter.Client, error) { + // Pass in your consumer key (API Key) and your Consumer Secret (API Secret) + config := oauth1.NewConfig(creds.ConsumerKey, creds.ConsumerSecret) + // Pass in your Access Token and your Access Token Secret + token := oauth1.NewToken(creds.AccessToken, creds.AccessTokenSecret) + + httpClient := config.Client(oauth1.NoContext, token) + client := twitter.NewClient(httpClient) + + // Verify Credentials + verifyParams := &twitter.AccountVerifyParams{ + SkipStatus: twitter.Bool(true), + IncludeEmail: twitter.Bool(true), + } + + // we can retrieve the user and verify if the credentials + // we have used successfully allow us to log in! + user, _, err := client.Accounts.VerifyCredentials(verifyParams) + if err != nil { + return nil, err + } + + log.Printf("User's ACCOUNT:\n%+v\n", user) + return client, nil +} +func main() { + creds := Credentials{ + AccessToken: os.Getenv("ACCESS_TOKEN"), + AccessTokenSecret: os.Getenv("ACCESS_TOKEN_SECRET"), + ConsumerKey: os.Getenv("CONSUMER_KEY"), + ConsumerSecret: os.Getenv("CONSUMER_SECRET"), + } + { + const DaysTotal int = 90 + var remainingDays uint = 90 + challenge := "#90DaysOfDevOps" + + fmt.Printf("Welcome to the %v challenge.\nThis challenge consists of %v days\n", challenge, DaysTotal) + + var TwitterName string + var DaysCompleted uint + + // asking for user input + fmt.Println("Enter Your Twitter Handle: ") + fmt.Scanln(&TwitterName) + + fmt.Println("How many days have you completed?: ") + fmt.Scanln(&DaysCompleted) + + // calculate remaining days + remainingDays = remainingDays - DaysCompleted + + //fmt.Printf("Thank you %v for taking part and completing %v days.\n", TwitterName, DaysCompleted) + //fmt.Printf("You have %v days remaining for the %v challenge\n", remainingDays, challenge) + // fmt.Println("Good luck") + + client, err := getClient(&creds) + if err != nil { + log.Println("Error getting Twitter Client, this is expected if you did not supply your Twitter API tokens") + log.Println(err) + } + + message := fmt.Sprintf("Hey I am %v I have been doing the %v for %v days and I have %v Days left", TwitterName, challenge, DaysCompleted, remainingDays) + tweet, resp, err := client.Statuses.Update(message, nil) + if err != nil { + log.Println(err) + } + log.Printf("%+v\n", resp) + log.Printf("%+v\n", tweet) + } + +} +``` + +Sonuç olarak, bir tweet elde etmelisiniz, ancak çevre değişkenlerini sağlamadıysanız, aşağıdaki hatayı alırsınız. + +![](Images/Day13_Go7.png) + +Bunu düzelttikten sonra, başarılı bir şekilde terminaldeki çıktı aşağıdaki gibi olmalıdır: + +![](Images/Day13_Go8.png) + +Sonuçta oluşan tweet aşağıdaki gibi görünmelidir: + +![](Images/Day13_Go9.png) + +## Birden fazla işletim sistemi için nasıl derlenir? + +Daha önce Go dili hakkında konuştuğumuzda "Birden Fazla İşletim Sistemi İçin Nasıl Derlenir?" diye sormuştuk. + +Go'nun harika yanı, kolayca birçok farklı işletim sistemi için derlenebilmesidir. Tam bir listeyi aşağıdaki komutu çalıştırarak alabilirsiniz: + +``` +go tool dist list +``` +Bugüne kadar `go build` komutlarını kullanmak harikaydı ve bu komutlar `GOOS` ve `GOARCH` çevre değişkenlerini kullanarak ana makineyi belirleyecek ve buna göre yürütülebilir dosyayı oluşturacaktır. Ancak aşağıdaki kodu örnek olarak kullanarak diğer işletim sistemleri için farklı ikili dosyalar da oluşturabiliriz. + +```go +GOARCH=amd64 GOOS=darwin go build -o ${BINARY_NAME}_0.1_darwin main.go +GOARCH=amd64 GOOS=linux go build -o ${BINARY_NAME}_0.1_linux main.go +GOARCH=amd64 GOOS=windows go build -o ${BINARY_NAME}_0.1_windows main.go +GOARCH=arm64 GOOS=linux go build -o ${BINARY_NAME}_0.1_linux_arm64 main.go +GOARCH=arm64 GOOS=darwin go build -o ${BINARY_NAME}_0.1_darwin_arm64 main.go +``` + +Bu, yapılandırılmış tüm platformlar için istenen ikili dosyaları dizine verecektir. + +Sonra, bu kodu alabilir ve her yeni özellik ve işlevsellik eklediğinizde ikili dosyaları oluşturmak için bir makefile oluşturabilirsiniz. [makefile](Go/makefile) dosyasına goz atın. + +Bu, [repository](https://github.com/MichaelCade/90DaysOfDevOps/releases) üzerinde görebileceğiniz sürümleri oluşturmak için kullanılan şeydir. + +## Kaynaklar + +- [StackOverflow 2021 Developer Survey](https://insights.stackoverflow.com/survey/2021) +- [Why we are choosing Golang to learn](https://www.youtube.com/watch?v=7pLqIIAqZD4&t=9s) +- [Jake Wright - Learn Go in 12 minutes](https://www.youtube.com/watch?v=C8LgvuEBraI&t=312s) +- [Techworld with Nana - Golang full course - 3 hours 24 mins](https://www.youtube.com/watch?v=yyUHQIec83I) +- [**NOT FREE** Nigel Poulton Pluralsight - Go Fundamentals - 3 hours 26 mins](https://www.pluralsight.com/courses/go-fundamentals) +- [FreeCodeCamp - Learn Go Programming - Golang Tutorial for Beginners](https://www.youtube.com/watch?v=YS4e4q9oBaU&t=1025s) +- [Hitesh Choudhary - Complete playlist](https://www.youtube.com/playlist?list=PLRAV69dS1uWSR89FRQGZ6q9BR2b44Tr9N) +- [A great repo full of all things DevOps & exercises](https://github.com/bregman-arie/devops-exercises) +- [GoByExample - Example based learning](https://gobyexample.com/) +- [go.dev/tour/list](https://go.dev/tour/list) +- [go.dev/learn](https://go.dev/learn/) + +Harika! 7 günlük programlama dili öğrenme sürecini tamamladınız. Zamanın hızla geçtiği ve herhangi bir baskı olmadan yeni kavramlar öğrendiğimiz bir süreç oldu. Gelecekteki profesyonel kariyeriniz için önemli bilgiler edindik. Öğrenilecek çok daha fazla şey var, umarım programlama dillerine, Go, Python veya seçtiğiniz diğer dillere çalışmaya devam edersiniz. Çünkü öğrendiklerinizin hepsini gelecekte kullanabilirsiniz, yeter ki klavyeye devam edin. + +Şimdi, Linux'a odaklanacağız ve oradaki temel kavramlara bir göz atacağız🐧 + +Gorusmek Uzere [Gun 14](day14.md). diff --git a/2022/tr/Days/day14.md b/2022/tr/Days/day14.md new file mode 100644 index 0000000..3b42dbb --- /dev/null +++ b/2022/tr/Days/day14.md @@ -0,0 +1,110 @@ +## DevOps & Linux + +Linux ve DevOps, özelleştirme ve ölçeklenebilirlik üzerinde odaklanarak benzer kültür ve perspektiflere sahiptir. Bu iki Linux özelliği, özellikle DevOps için önemlidir. + +Birçok teknoloji, özellikle yazılım geliştirme veya altyapı yönetimiyle ilgili olanlar, Linux'tan kaynaklanır. + +Ayrıca, birçok açık kaynak proje, özellikle DevOps araçları, başlangıçtan itibaren Linux'ta çalışacak şekilde tasarlandı. + +DevOps veya herhangi bir operasyon işlevi açısından bakıldığında, Linux ile karşılaşacaksınız. WinOps için bir yer var, ancak çoğu zaman Linux sunucularını yöneteceksiniz ve dağıtacaksınız. 🐧 + +Michael Cade, macOS veya Windows tabanlı bir masaüstüne sahip olmasına rağmen, Linux'u bir süredir günlük olarak kullanmaktadır. Ancak, şu anda bulunduğu Cloud Native rolüne başladığında, dizüstü bilgisayarını tamamen Linux tabanlı ve günlük olarak kullanılan bir işletim sistemine dönüştürdü. Hala çok platformlu olmayan iş uygulamaları ve Windows veya Mac'in kurumsal sahipliği nedeniyle Linux'ta çalışmayan ses ve video ekipmanı nedeniyle Windows'a ihtiyaç duyuyordu. Linux'u tam zamanlı olarak çalıştırarak, gelecek 7 gün boyunca göreceğimiz birçok konuyu daha iyi anlamak için tam anlamıyla bir Linux Masaüstü deneyimi elde etmek istedi. + +Öte yandan, çevirmen, Linux işletim sistemlerini 10 yılı aşkın bir süredir kullanmaktadır ve yalnızca sosyal veya iş ortamı gereksinimleri nedeniyle zaman zaman Windows veya MacOS kullanmaktadır. Yalnızca birinci sınıf bir oyun oynamak veya yazılımı test etmek istediğimde Windows'u özledim. İlk durumda gerektiğinde kullanmak için hazır bir sabit diskim var; ikinci durumda ise sadece deneme amaçlı bir Windows 10 sanallaştırma ortamım bulunuyor. Şimdiye kadar, Windows 11 gerçekten başarısız oldu. Microsoft'un 10 sürümüyle gerçekten bir adım attığını ve operasyonel ve gizlilik ihtiyaçlarımı karşılamasa da önceki başarısızlıklarına kıyasla oldukça sağlam olduğunu söylemeliyim. + + +## Baslayalım + +Buradaki amacım, okuyucunun yukarıda açıklanan adımları takip etmesini değil, önceki görüşleri bilmesinin ilginç olabileceğini göstermektir. Elbette daha kolay seçenekler mevcuttur; Microsoft veya Apple işletim sistemleri "çalıştır ve kullan" prensibine dayanır. Ancak, tam zamanlı olarak bir Linux dağıtımı kullanmaya karar vermek, işlerin nasıl çalıştığını daha hızlı öğrenmenizi, kabukla tanışmanızı ve en önemlisi, işletim sistemlerinin, ağın ve donanımın nasıl çalıştığını anlamanızı sağlar. + +Bu 7 günün çoğunda, bir sanal makineyi Virtual Box'ta bir Linux dağıtımının masaüstü sürümünü dağıtacağız. Yöneteceğiniz Linux sunucularının çoğu muhtemelen kullanıcı arabirimi (GUI) olmayan sunuculardır ve her şey kabuk (CLI) temelindedir. Ancak, başlangıçta belirttiğim gibi, bu 90 gün boyunca ele alınan araçların çoğu Linux'ta başladı, bu yüzden Linux dağıtımlarının özellikle CLI olmak üzere çalıştırılmasına dalmanız ve öğrenme deneyimini de yaşamanız önerilir. Bu, Windows veya MacOS gibi diğer işletim sistemlerini daha iyi anlamanıza da yardımcı olacaktır. + +Bu gönderinin geri kalanında, Virtual Box ortamında bir Ubuntu Masaüstü sanal makinesi elde etmeye odaklanacağız. İlerlemek için Virtual Box ve Ubuntu ISO sayfalarından indirme yapın. + +Linux dağıtımlarını kullanmanın bir başka iyi nedeni de ücretsiz ve açık kaynak olmalarıdır ve hatta bazıları özgür yazılım olabilir. Şu anda en yaygın kullanılan dağıtım olduğu için Ubuntu'yu seçtik (akıllı telefonlar ve kurumsal sunucular hariç). Bu, öznel bir görüş olabilir ve yanlış olabilir, ancak CentOS ile son yaşananlar göz önüne alındığında Ubuntu'nun en üst sıraya yerleşmiş olması mümkündür. + + +## HashiCorp Vagrant Tanıtımı + +Vagrant, sanal makinelerinizi yöneten bir CLI yardımcı programıdır. Vagrant'ı kullanarak vSphere, Hyper-V, VirtualBox ve Docker gibi farklı platformlarda sanal makineleri oluşturabilir ve sonlandırabilirsiniz. Diğer sağlayıcılar da mevcuttur, ancak biz VirtualBox ile devam edeceğiz, bu yüzden hazırsınız. + +İlk olarak, Vagrant'ı bilgisayarınıza yüklemeniz gerekmektedir. İndirme sayfasına gittiğinizde, birçok işletim sistemi seçeneği görürsünüz. HashiCorp Vagrant sayfasından işletim sisteminize uygun sürümü indirebilirsiniz. + +Ardından, VirtualBox'ı yüklemeniz gerekmektedir. Bu, birçok farklı işletim sisteminde kullanılabilir ve Windows, macOS veya Linux gibi farklı platformlarda kullanabilme avantajına sahip olmanızı sağlar. + +Her iki kurulum da oldukça basittir ve her ikisi de büyük bir topluluğa sahiptir, bu yüzden herhangi bir sorun yaşarsanız, yardım almak için bu topluluklara başvurabilirsiniz. İlgili belgelendirme sayfalarını ziyaret ederek daha fazla bilgi edinebilirsiniz. + +- [Virtual Box](https://www.virtualbox.org/wiki/Documentation) +- [Ubuntu](https://help.ubuntu.com/) +- [Vagrant](https://developer.hashicorp.com/vagrant/docs) + +## VAGRANTFILE Olusturma + +İlk makinemizi çalıştırmak için hazırız, çalışma istasyonunuzun terminalinde. Aşağıda Windows PowerShell örneğini görebilirsiniz. Projelerinizin klasörüne gidin ve orada VAGRANTFILE'ınızı bulacaksınız. Orada vagrant up komutunu yazabilir ve her şey yolundaysa aşağıdakine benzer bir çıktı göreceksiniz. + +![](Images/Day14_Linux1.png) + +Echemos un vistazo a ese VAGRANTFILE y veamos lo que estamos construyendo. + +``` +Vagrant.configure("2") do |config| + + config.vm.box = "chenhan/ubuntu-desktop-20.04" + + config.vm.provider :virtualbox do |v| + + v.memory = 8096 + + v.cpus = 4 + + v.customize ["modifyvm", :id, "--vram", "128"] + +end + +end +``` +Bu çok basit bir VAGRANTFILE'dır. Belirli bir "box" kullanmak istediğimizi söylüyoruz, bu bir halka açık imaj veya aradığınız özel bir yapı olabilir. Halka açık olarak kullanılabilen birçok "box"un listesini Vagrant halka açık "box" kataloğunda bulabilirsiniz. + +Bir sonraki satırda, belirli bir sağlayıcı kullanmak istediğimizi belirtiyoruz ve bu durumda `VirtualBox`'ı kullanıyoruz. Makinemizin belleğini `8GB` ve CPU sayısını 4 olarak tanımlıyoruz. Görsel sorunlarla karşılaşırsanız aşağıdaki satırı da eklemeniz gerekebilir. Bu, video belleğini istediğiniz şekilde ayarlar. Ben bunu `128MB`'a kadar artırırdım, ancak sisteminize bağlı olarak değişebilir. + +``` +v.customize ["modifyvm", :id, "--vram", ""] +``` + +Ayrıca bu Vagrant dosyasının bir kopyasını [Linux Klasörü](Linux/VAGRANTFILE) içine yerleştirmeniz gerekmektedir. + +## Linux Desktopumuzu Oluşturmak + +İlk makinemizi çalıştırmak için hazırız. İş istasyonumuzdaki terminalde, aşağıda Windows PowerShell'de bir örnek görebilirsiniz. Proje klasörünüze gidin ve orada VAGRANTFILE dosyasını bulacaksınız. Ardından `vagrant up` komutunu yazabilir ve her şey yolunda ise aşağıdaki gibi bir çıktı alırsınız. + +![](Images/Day14_Linux2.png) + + +Burada eklememiz gereken bir şey daha var: sanal makinede ağ yapılandırması "NAT" olarak ayarlanacak. Bu aşamada NAT hakkında bilgi sahibi olmanıza gerek yok, çünkü Ağ oturumunda bununla ilgili tam bir oturum yapacağız. Ev ağınızda bir makine elde etmek için kolay bir yol olması ve ayrıca VirtualBox'ta varsayılan ağ modu olması nedeniyle tercih edilen ağ modudur. Daha fazla bilgiye VirtualBox belgelerinde bulabilirsiniz. [Dokuman Virtual Box](https://www.virtualbox.org/manual/ch06.html#network_nat) + +`vagrant up` tamamlandıktan sonra, yeni sanal makinenin terminaline doğrudan erişmek için `vagrant ssh` komutunu kullanabiliriz. + +![](Images/Day14_Linux3.png) + +Burada, önümüzdeki günlerde çoğunlukla keşfedeceğimiz yerdir. Ayrıca, günlük olarak bunu çalıştırırken geliştirici çalışma istasyonunuz için bazı özelleştirmelerde de derinleşeceğiz ve hayatınızı çok daha kolay hale getireceğiz. Ve tabii ki, gerçekten DevOps'ta olmak için iyi bir terminala sahip olduğunuzda mısınız? + +VirtualBox'ta, VM'nizi seçtiğinizde oturum açma ekranını görmelisiniz. + +![](Images/Day14_Linux4.png) + +Evet, bu noktaya kadar geldiyseniz ve "KULLANICI ADI VE ŞİFRE NE?" diye sorduysanız 🤔 + +- Username = vagrant +- Password = vagrant + +Yarın bazı komutları ve ne işe yaradıklarını göreceğiz. Terminal, her şeyi gerçekleştirmek için yer olacak ve zamanla dostunuz olacak. + +## Kaynaklar + +- [Learn the Linux Fundamentals - Part 1](https://www.youtube.com/watch?v=kPylihJRG70) +- [Linux for hackers (don't worry you don't need to be a hacker!)](https://www.youtube.com/watch?v=VbEx7B_PTOE) +- [Webminal](https://www.webminal.org/) + +İlerledikçe birçok kaynak bulacaksınız ve Go kaynakları gibi, genellikle ÜCRETSİZ içerik içeren kaynakları tutmaya çalışacağım. + +Gorusmek uzere [Gun 15](day15.md) diff --git a/2022/tr/Days/day15.md b/2022/tr/Days/day15.md new file mode 100644 index 0000000..237a9ce --- /dev/null +++ b/2022/tr/Days/day15.md @@ -0,0 +1,184 @@ +## DevOps için Linux Komutları (aslında hepsi) + +[Dun](day14.md) birçok şey yapmak için terminalde çok zaman geçireceğimizi söylemiştik. + +Ayrıca vagrant ile sağladığımız sanal makineye `vagrant ssh` kullanarak erişebileceğimizi ve buna karar verirseniz sanal makine konsoluna giriş yapmak için kullanıcı adı ve şifre girmeniz gerekeceğini belirtmiştik. + +İşte aşağıda belirtilen yere ulaşmak istiyoruz: + +![](Images/Day15_Linux1.png) + +## Komutlar + +Bir saat içinde tüm komutları kapsamak imkansızdır, 7 gün boyunca her birini ele aldığımızda, bunları kapsayan sayfalar ve sayfalar dolusu belge vardır. Eğer terminalinizde belirli bir komutun seçeneklerini anlamak istiyorsanız, `man` sayfaları (kılavuzun kısaltması) size yardımcı olacaktır. Bu sayede bu yazıda ele aldığımız her bir komut için daha fazla seçenek bulmak için man komutunu kullanabiliriz. `man man` komutunu çalıştırarak manuel komutunun yardımını alabilirsiniz. Manuel sayfalarından çıkmak için `q` tuşuna basmanız gerekmektedir. + +![](Images/Day15_Linux2.png) +![](Images/Day15_Linux3.png) + +`sudo` - Eğer Windows'ta `yönetici olarak çalıştır` düğmesine aşinasanız, `sudo'`nun buna benzer bir şey olduğunu düşünebilirsiniz, ancak tam olarak aynı değildir. Bir komutu sudo ile çalıştırdığınızda, komutu `root` olarak çalıştırıyorsunuz ve komutu çalıştırmadan önce parolanızı girmeniz istenecektir. + +![](Images/Day15_Linux4.png) + +Uygulamaları veya hizmetleri yüklemek gibi belirli görevler için sudo komutunu kullanmanız gerekebilir, ancak bir süre boyunca sudo olarak çalışmak isterseniz ne yapmalısınız? İşte burada sudo su komutunu kullanabilirsiniz, bu size root kullanıcısı için bir kabuk verecektir. Bizim gibi bir test sanal makinesinde bu sorun değil, ancak uzun süre boyunca root olarak çalışmanız çok zor olurdu, kötü şeyler olabilir. Bu yükseltilmiş konumdan çıkmak için sadece `exit` yazmanız yeterlidir. + + +![](Images/Day15_Linux5.png) + +Sık sık `clear` komutunu kullanacaksınız. Tam olarak adında olduğu gibi, ekranı tüm önceki komutlardan temizler, imleci en üstte gösterir ve size hoş ve temiz bir çalışma alanı sağlar. + +![](Images/Day15_Linux6.png) + +İşte sistemimizde bir şeyler oluşturabileceğimiz ve ardından bunları terminale görüntüleyebileceğimiz bazı komutları görelim. İlk olarak, mkdir komutunu kullanarak sistemimizde bir klasör oluşturabiliriz. Aşağıdaki komutla ana dizinde "Day15" adında bir klasör oluşturabiliriz: `mkdir Day15` + +![](Images/Day15_Linux7.png) + +`cd` komutuyla dizini değiştirebiliriz. Yeni oluşturduğumuz dizine gitmek için `cd Day15` yazabiliriz. Ayrıca, kullanılabilir dizini otomatik olarak tamamlamak için de kullanabilirsiniz. Başlangıç noktasına dönmek için `cd ..` kullanabilirsiniz. + +![](Images/Day15_Linux8.png) + +`rmdir` komutu, bir dizini silmemizi sağlar. `rmdir Day15` komutunu çalıştırırsak, klasör silinecektir (bu, klasörde herhangi bir şey olmadığı sürece çalışacaktır). + +![](Images/Day15_Linux9.png) + +Sistem dosya sisteminin derinliklerine gidip nerede olduğumuzu bilmediğimiz durumlar hepimizin başına gelir. `pwd` komutunu kullanarak çalışma dizinimizi görebiliriz. + +![](Images/Day15_Linux10.png) + +Peki dosya nasıl oluşturabiliriz? `touch` komutunu kullanarak dosyalar oluşturabiliriz. Örneğin, `touch Day15` komutu bir dosya oluşturur. + +![](Images/Day15_Linux11.png) + +`ls` - bunu sıkça kullanacaksınız. Bu, mevcut dizindeki tüm dosyaları ve klasörleri listeler. Şimdi oluşturduğumuz dosyayı görebilir miyiz? + +![](Images/Day15_Linux12.png) + +Linux sisteminizde dosyaları nasıl bulabilirsiniz? `locate`, dosya sistemimizde arama yapmamızı sağlar. `locate Day15` komutunu kullanırsak, dosyanın konumunu bildirir. Avantajı, dosyanın var olduğunu bildiğiniz halde boş bir sonuç aldıysanız, `sudo updatedb` komutunu çalıştırarak sistem dosya sistemine tüm dosyaları dizinleyebilir ve ardından `locate` komutunu yeniden çalıştırabilirsiniz. Eğer locate mevcut değilse, `sudo apt install mlocate` komutunu kullanarak yükleyebilirsiniz. + +![](Images/Day15_Linux13.png) + +Dosyaları bir konumdan başka bir konuma taşımak için ne yapabiliriz? mv, dosyaları taşımanıza olanak sağlar. Örneğin, `mv Day15 90DaysOfDevOps` komutu, dosyanızı 90DaysOfDevOps klasörüne taşır. + +![](Images/Day15_Linux14.png) + + +"Day15" adlı dosyayı taşıdık, ancak şimdi onu başka bir isme yeniden adlandırmak istediğimizde ne olur? Yine mv komutunu kullanabiliriz... Evet, sadece `mv Day15` `day15` şeklinde kullanarak büyük harfe dönüştürebilir veya `mv day15 AnotherDay` şeklinde tamamen değiştirebiliriz. Şimdi ls komutunu kullanarak kontrol edin. + +![](Images/Day15_Linux15.png) + +Yeterli oldu, şimdi dosyadan veya hatta varsa dizinden kurtulalım. rm komutunu kullanarak basitçe rm AnotherDay diyerek dosyayı silebiliriz. Ayrıca sıklıkla `rm -R` kullanacağız, bu komut bir dizin veya konum üzerinde ağaç şeklinde silme işlemi yapar. Tüm dosyaları zorla silmek için `rm -R -f` komutunu kullanabiliriz. Bir spoiler: `rm -R -f /` komutunu çalıştırırsanız, sudo ekleyin ve sistemle vedalaşabilirsiniz...! + +![](Images/Day15_Linux16.png) + +Dosyaları taşımaktan bahsettik, peki ya sadece bir dosyayı başka bir klasöre kopyalamak istiyorsak, bunun için `mv` komutu gibi `cp` komutunu kullanabiliriz. Örneğin, `cp Day15 Desktop` diyerek dosyayı kopyalayabiliriz. + +![](Images/Day15_Linux17.png) + +Klasörler ve dosyalar oluşturduk, ancak klasöre içerik eklemedik. Bunun için birkaç farklı yöntem var, ancak basit bir yol `echo` komutunu kullanmaktır. Ayrıca, sistem değişkenlerini belirlemek için terminalde birçok şeyi yazdırmak için de echo komutunu kullanabiliriz. echo `echo "Hello #90DaysOfDevOps" > Day15` komutunu kullanarak bir dosyaya metin ekleyebiliriz. Ayrıca, echo `"Komutlar eglenceldir!" >> Gun15` komutunu kullanarak dosyaya eklemeler yapabiliriz. + +![](Images/Day15_Linux18.png) + +Sıkça kullanacağınız bir başka komut! `cat` kelimesi concatenate'in kısaltmasıdır. `cat Day15` komutunu kullanarak dosya içeriğini görüntüleyebiliriz. Yapılandırma dosyalarını hızlıca okumak için harika bir yöntem. + +![](Images/Day15_Linux19.png) + +Uzun ve karmaşık bir yapılandırma dosyasına sahipseniz ve her satırı okumak yerine dosyada hızlı bir şekilde bir kelime bulmanız gerekiyorsa, grep komutu size yardımcı olur. Bu komut, belirli bir kelimeyi dosyada aramanıza olanak sağlar. `cat Day15 | grep "#90DaysOfDevOps"`. + +![](Images/Day15_Linux20.png) + +Eğer benim gibi sıkça clear komutunu kullanan biriyseniz, önceden çalıştırdığınız bazı komutları kaçırabilirsiniz. Bu durumda history komutunu kullanarak daha önce çalıştırdığınız tüm komutları bulabilirsiniz. `history -c` komutu ise komut geçmişini temizleyecektir. + +`history` komutunu çalıştırdığınızda ve belirli bir komut seçmek istediğinizde, listedeki üçüncü komutu seçmek için `!3` gibi bir ifade kullanabilirsiniz. + +Ayrıca, `history | grep "Komut"` şeklinde bir ifade kullanarak belirli bir şeyi arayabilirsiniz. + +Sunucularda, bir komutun ne zaman çalıştırıldığını takip etmek için her komuta tarih ve saat eklemek yararlı olabilir. Bu davranışı kontrol eden sistem değişkeni aşağıdaki gibidir: + +```shell +HISTTIMEFORMAT="%d-%m-%Y %T " +``` + +"Bash_profile" dosyanıza kolaylıkla ekleyebilirsiniz: + +``` +echo 'export HISTTIMEFORMAT="%d-%m-%Y %T "' >> ~/.bash_profile +``` + +daha önce yaptığınız komutları daha uzun bir süre boyunca geriye dönük olarak gözden geçirebilmenizi sağlar. + +``` +echo 'export HISTSIZE=100000' >> ~/.bash_profile +echo 'export HISTFILESIZE=10000000' >> ~/.bash_profile +``` + +![](Images/Day15_Linux21.png) + +bir kişinin şifresini değiştirmek için `passwd` komutunu kullanabileceğini belirtmektedir. Bu şekilde şifrenizi değiştirirken, girdiğiniz şifre karakterleri gizli tutulur ve history (geçmiş) komutunda görüntülenmez. Ancak, komutunuzda `-p PASSWORD` gibi bir parametre kullanıyorsanız, bu şifre geçmişte görülebilir. + +![](Images/Day15_Linux22.png) + +Aynı zamanda sisteme yeni kullanıcılar eklemek isteyebiliriz, bunu useradd komutuyla yapabiliriz. Kullanıcıyı eklemek için sudo komutunu kullanmamız gerekmektedir. Yeni bir kullanıcı eklemek için `sudo useradd NewUser` komutunu kullanabiliriz. + +![](Images/Day15_Linux23.png) + +Bir grup oluşturmak için tekrar sudo kullanmamız gerekmektedir ve sudo groupadd DevOps komutunu kullanabiliriz. Ardından, yeni kullanıcıyı bu gruba eklemek istiyorsak `sudo usermod -a -G DevOps` komutunu kullanabiliriz. `-a` ekleme anlamına gelir ve `-G grup adını belirtir`." + +![](Images/Day15_Linux24.png) + +Sudo grubuna kullanıcı eklemek için aşağıdaki komutu kullanabiliriz: `usermod -a -G sudo NewUser` + +### Permissions(Yetkiler) + +Okuma, yazma ve çalıştırma, Linux sistemimizdeki tüm dosya ve klasörlerde sahip olduğumuz izinlerdir + +Tam bir liste şu şekildedir: + +- 0 = Hiçbiri `---` +- 1 = Sadece calıştırma `--X` +- 2 = Sadece yazma `-W-` +- 3 = Yazma ve çalıştırma `-WX` +- 4 = Sadece okuma `R--` +- 5 = Okuma ve Calsıtırma `R-X` +- 6 = Okuma ve yazma `RW-` +- 7 = Okuma, yazma ve çalıştırma `RWX` + +Ayrıca `777` veya `775` gibi görürsünüz ve bunlar yukarıdaki listedeki aynı numaraları temsil eder, ancak her biri `Kullanıcı - Grup - Herkes`'i temsil eder. + +Dosyamıza bir göz atalım. `ls -al Day15` komutunu kullanarak yukarıda bahsedilen 3 grup görülebilir, kullanıcı ve grup okuma ve yazma iznine sahipken herkes sadece okuma iznine sahiptir. + +![](Images/Day15_Linux25.png) + +Bunu `chmod `kullanarak değiştirebiliriz. Sistemlerinizde ikili dosyalar oluşturuyorsanız bunu yapmanız gerekebilir, bu ikili dosyaların çalıştırılabilir olma yeteneğini vermeniz gerekebilir. Bir klasör için bunu yapmak isterseniz, bunu yapmak için R'yi kullanabilirsiniz. + +![](Images/Day15_Linux26.png) + +Dosyanın sahibini değiştirmek için ne yapmalıyız? Bu işlem için `chown` kullanabiliriz. Day15 dosyamızın sahibini vagrant kullanıcısından NewUser kullanıcısına değiştirmek istiyorsak `sudo chown NewUser Day15` komutunu kullanabiliriz, yine `-R` kullanabiliriz. + +![](Images/Day15_Linux27.png) + +Gerçek kullanımda awk adlı bir komutla karşılaşacaksınız. Belirli verileri yalnızca çıktıdan almanız gereken durumlarda kullanışlıdır. `who` komutunu çalıştırarak bilgiler içeren satırlar elde ediyoruz, ancak belki sadece isimlere ihtiyacımız var. Sadece ilk sütunu içeren bir liste elde etmek için `who | awk '{print $1}'` komutunu çalıştırabiliriz. + +![](Images/Day15_Linux28.png) + +Eğer standart girişten veri akışlarını okumak ve komut satırlarını çalıştırmak istiyorsanız; yani bir komutun çıktısını alıp onu başka bir komutun argümanı olarak kullanmak istiyorsanız, xargs adlı bir araç işinize yarar. Örneğin, Linux sistemdeki tüm kullanıcı hesaplarının bir listesini elde etmek istiyorsanız, `cut -d: -f1 < /etc/passwd` komutunu çalıştırabilir ve aşağıda gördüğümüz uzun listeyi elde edebilirsiniz. + +![](Images/Day15_Linux29.png) + +Eğer bu listeyi sıkıştırmak istiyorsanız, `xargs` kullanarak şu komutu kullanabilirsiniz: `cut -d: -f1 < /etc/passwd | sort | xargs` + +![](Images/Day15_Linux30.png) + +Önceki cut komutu, bir dosyanın her satırından bölümleri kaldırmamızı sağlar. Bir satırın bayt, karakter veya alan pozisyonlarına göre parçalanması için kullanılabilir. `cut -d " " -f 2 list.txt` komutuyla, elimizdeki ilk harfi kaldırabilir ve sadece sayıları görüntüleyebiliriz. Bu komutla burada kullanılabilecek birçok kombinasyon vardır ve manuel olarak verileri daha hızlı çekebilirdim diye düşünüyorum. + +![](Images/Day15_Linux31.png) + +Ayrıca, bir komut yazdığınızda ve ondan memnun kalmazsanız ve yeniden başlamak isterseniz, sadece Ctrl + C tuşlarına basmanız yeterli olacaktır. Bu, o satırı iptal eder ve yeniden başlamanızı sağlar. + +## Kaynaklar + +- [Learn the Linux Fundamentals - Part 1](https://www.youtube.com/watch?v=kPylihJRG70) +- [Linux for hackers (don't worry you don't need to be a hacker!)](https://www.youtube.com/watch?v=VbEx7B_PTOE) +- [Webminal](https://www.webminal.org/) + +Nos vemos el [Día 16](day16.md) + +Bu oldukça yoğun bir liste, ancak bu komutlar Linux sunucu yönetimi veya Linux masaüstü kullanımı gibi günlük işlerde sıkça kullanılır. Windows veya macOS'ta UI üzerinden gezinmek oldukça kolay olabilir, ancak gerçekten hızlı ve etkili olmak istiyorsanız, her şeyi terminal üzerinden yönetmek en doğru yol. \ No newline at end of file diff --git a/2022/tr/Days/day16.md b/2022/tr/Days/day16.md new file mode 100644 index 0000000..c4215f6 --- /dev/null +++ b/2022/tr/Days/day16.md @@ -0,0 +1,207 @@ +## Linux Sistemi, Dosya Sistemi ve Depolama Yönetimi + +Bugüne kadar Linux ve DevOps ile tanıştık. Vagrant ile laboratuvar ortamımızı kurduk [(Gun 14)](day14.md) ve terminalde günlük işlerimiz için kullanacağımız komutlara kısaca göz attık [(Gun 15)](day15.md). + +Bugün Linux sistemlerde güncellemeler, genel olarak yazılım kurulumu gibi önemli alanlara bakacağız. Ayrıca sistem dosyaları ve nasıl kullanıldıkları hakkında da biraz bilgi vermeye çalışacağız. Son olarak depolamaya göz atacağız. + +## Ubuntu ve Yazılım Yönetimi + +İlk olarak, işletim sistemimizi nasıl güncelleyeceğimizi görelim. Windows veya macOS işletim sistemlerinde bu işlemle tanışmış olabilirsiniz. Ancak masaüstü veya sunucu Linux'unda biraz farklıdır. + +Güncellemeleri ve yazılım kurulumlarını yapmak için kullanacağımız paket yöneticisi olan apt'yi göreceğiz Ubuntu sanal makinasında. + +Genellikle Debian tabanlı dağıtımlarda, yazılım kurulumlarından önce merkezi depoların en son güncellemelerini almak için aşağıdaki komutu kullanırız: + +```shell +sudo apt-get update +``` + +![](Images/Day16_Linux1.png) + +Şimdi, en son işletim sistemi güncellemeleriyle güncellenmiş bir Ubuntu sanal makineye sahibiz. Şimdi bir yazılım kurmak istiyoruz. + +figlet adında bir metin bannerları oluşturan bir program seçelim. + +Eğer terminalde figlet yazarsanız, sistemimizde yüklü olmadığını göreceksiniz. + +![](Images/Day16_Linux2.png) + +Ancak, bize apt ile ilgili bazı kurulum seçenekleri sunar. Bu, varsayılan depolarda figlet adında bir program olduğu anlamına gelir. sudo apt install figlet komutunu deneyelim. + +![](Images/Day16_Linux3.png) + + +Linux Sistemi, Dosya Sistemi ve Depolama Yönetimi +Bugüne kadar Linux ve DevOps ile tanıştık. Vagrant ile laboratuvar ortamımızı kurduk (Gün 14) ve terminalde günlük işlerimiz için kullanacağımız komutlara kısaca göz attık (Gün 15). + +Bugün Linux sistemlerde güncellemeler, genel olarak yazılım kurulumu gibi önemli alanlara bakacağız. Ayrıca sistem dosyaları ve nasıl kullanıldıkları hakkında da biraz bilgi vermeye çalışacağız. Son olarak depolamaya göz atacağız. + +Ubuntu ve Yazılım Yönetimi +İlk olarak, işletim sistemimizi nasıl güncelleyeceğimizi görelim. Windows veya macOS işletim sistemlerinde bu işlemle tanışmış olabilirsiniz. Ancak masaüstü veya sunucu Linux'unda biraz farklıdır. + +Güncellemeleri ve yazılım kurulumlarını yapmak için kullanacağımız paket yöneticisi olan apt'yi göreceğiz Ubuntu sanal makinasında. + +Genellikle Debian tabanlı dağıtımlarda, yazılım kurulumlarından önce merkezi depoların en son güncellemelerini almak için aşağıdaki komutu kullanırız: + +shell +Copy code +sudo apt-get update + + +Şimdi, en son işletim sistemi güncellemeleriyle güncellenmiş bir Ubuntu sanal makineye sahibiz. Şimdi bir yazılım kurmak istiyoruz. + +figlet adında bir metin bannerları oluşturan bir program seçelim. + +Eğer terminalde figlet yazarsanız, sistemimizde yüklü olmadığını göreceksiniz. + +Ancak, bize apt ile ilgili bazı kurulum seçenekleri sunar. Bu, varsayılan depolarda figlet adında bir program olduğu anlamına gelir. sudo apt install figlet komutunu deneyelim. + +Kuruldu. Artık aşağıdaki gibi kullanabiliriz. + +![](Images/Day16_Linux4.png) + +Si queremos eliminar esa o cualquier otro software también podemos hacerlo a través del gestor de paquetes `apt`. + +```shell +sudo apt remove figlet +``` + +![](Images/Day16_Linux5.png) + +⚠️ _Dikkat etmelisiniz, silmemeniz gereken şeyleri silmekten kaçının. Genellikle, dağıtımlar size uyarı verecektir. Görünüşte kullanmadığınız tüm programları silmek mümkündür, ancak aslında diğer programların bağımlılıklarıdır._ + +Programı ve bağımlılıklarını tamamen silmek isterseniz --purge seçeneğini kullanabilirsiniz: `--purge` + +```shell +sudo apt --purge remove figlet +``` + +Üçüncü taraf depoları ekleyebiliriz ve bu depolara Ubuntu'nun varsayılan depolarının yanı sıra resmi depolara da erişim sağlayabiliriz. + +Örneğin, Ubuntu sanal makinemize Vagrant'ı kurmak istesek, şu anda yapamayız ve bunu aşağıdaki ilk komutta görebilirsiniz. HashiCorp deposuna güvenmek için bir anahtar ekliyoruz ve ardından deposunu sistemimize ekliyoruz. + +![](Images/Day16_Linux6.png) + +HashiCorp deposunu ekledikten sonra, `sudo apt install vagrant` komutunu kullanarak Vagrant'ı sistemimize kurabiliriz. + +![](Images/Day16_Linux7.png) + +Yazılım yüklemeleri konusunda birçok seçenek bulunmaktadır ve farklı paket yöneticisi seçenekleri mevcuttur. Örneğin, Ubuntu'da yazılım yüklemeleri için Snap paketlerini de kullanabiliriz. + +Umarız bu size Linux'ta işletim sistemi ve yazılım yüklemelerini nasıl yöneteceğinize dair bir fikir vermiştir. + +## Linux, yapılandırma dosyalarından oluşur; bir şeyi değiştirmek isterseniz, bu yapılandırma dosyalarını değiştirirsiniz. Harika! + +Windows'ta C sürücüsüne sahipsiniz ve bu, kök olarak kabul ettiğimiz şeydir. Linux'ta ise / karakteri, Linux sisteminizin önemli klasörlerini bulacağımız yerdir. + +![](Images/Day16_Linux8.png) + +- `/bin` - Binary (ikilik) kelimesinin kısaltmasıdır. Bu klasörde sistemimizin ihtiyaç duyduğu ikilikler, yürütülebilir dosyalar ve araçlar bulunur. + +![](Images/Day16_Linux9.png) + +- `/boot` - Sisteminizin başlatılması için gereken tüm dosyaları içerir; nasıl başlayacağını ve hangi sürücüden başlayacağını belirten dosyaları içerir. + +![](Images/Day16_Linux10.png) + +- `/dev` - Bu klasörde cihaz bilgilerini bulabilirsiniz; sda ana işletim sistemi diskinizi temsil eder. + +![](Images/Day16_Linux11.png) + +- `/etc` - Muhtemelen Linux'ta en çok gezineceğiniz klasördür. Çoğu yapılandırma dosyası burada bulunur. + +![](Images/Day16_Linux12.png) + +- `/home` - Bu, kullanıcı klasörlerinizi ve dosyalarınızı bulacağınız yerdir. "vagrant" kullanıcı klasörümüz bulunur. Ubuntu masaüstü için "Belgeler", "İndirilenler" ve "Masaüstü" gibi klasörleri içerir. + +![](Images/Day16_Linux13.png) + +- `/lib` - bin klasöründe ikiliklerin ve yürütülebilir dosyaların bulunduğunu belirtmiştik; işte bu klasörde bu dosyalar için paylaşılan kütüphaneleri bulacaksınız. + +![](Images/Day16_Linux14.png) + +- `/media` - Taşınabilir cihazları bulacağımız yerdir. + +![](Images/Day16_Linux15.png) + +- `/mnt` - Bu, geçici bir bağlama noktasıdır. Depolama konusunu bir sonraki bölümde daha detaylı ele alacağız. + +![](Images/Day16_Linux16.png) + +- `/opt` - İsteğe bağlı yazılım paketleri. Burada vagrant ve virtual box gibi bazı programları bulacaksınız. + +![](Images/Day16_Linux17.png) + +- `/proc` - Çalışan işletim sistemi çekirdeği ve işlemlerle ilgili bilgileri içeren /dev gibi bir sanal dosya sistemidir. Çalışma sırasında oluşturulan ve kapanan bir dosya sistemidir. Özellikle DevOps felsefesine odaklanmak istiyorsanız, /proc içeren dosya sistemleriyle çalışmak önemlidir. Çünkü konteynerleştirme konseptini daha iyi anlamaya yardımcı olur. + +![](Images/Day16_Linux18.png) + +- `/root` - Bu klasöre erişmek için sudo yetkisi gereklidir. Root kullanıcısının ana klasörüdür. + +![](Images/Day16_Linux19.png) + +- `/run` - Uygulama durumlarının geçici bir tutucusudur. + +![](Images/Day16_Linux20.png) + +- `/sbin` - Sudo bin, bu dizindeki araçlar sistemde yükseltilmiş süper kullanıcı ayrıcalıkları için tasarlanmıştır. + +![](Images/Day16_Linux21.png) + +- `/tmp` - Geçici dosyaların bulunduğu bir dizindir. + +![](Images/Day16_Linux22.png) + +- `/usr` - Eğer standart bir kullanıcı olarak yazılım paketleri yüklediyseniz, genellikle bu dizine yüklenecektir. Örnek olarak, `/usr/bin` konumunda yüklenebilirler. + +![](Images/Day16_Linux23.png) + +- `/var` - Uygulamalarımızın çalıştığı bir bin dizinidir. Tüm log dosyalarını depolamak için bir yer gereklidir ve bu yer /var dizinidir. + +![](Images/Day16_Linux24.png) + +## Depolama + +Linux veya herhangi bir sistemdeyken mevcut diskleri ve bu disklerde ne kadar boş alan olduğunu öğrenmek isteyebilirsiniz. Aşağıdaki komutlar, depolama tanımlamak, kullanmak ve yönetmek için yardımcı olacaktır. + +- `lsblk` Blok cihazlarını listeler. sda fiziksel diskimizi temsil eder ve ardından sda1, sda2, sda3 gibi bu diske ait bölümleri gösterir. + +![](Images/Day16_Linux25.png) + +- `df` Bölümler hakkında daha fazla ayrıntı sağlar: toplam alan, kullanılan alan ve boş alanı gösterir. df -h gibi seçenekleri kullanarak daha insancıl bir çıktı alabilirsiniz. + +![](Images/Day16_Linux26.png) + +Yeni bir diski sisteminize ekliyorsanız -bu Windows'ta da aynıdır-, diski disk yönetiminde biçimlendirmeniz gerekecektir. Linux terminalinde bunu aşağıdaki komutu kullanarak yapabilirsiniz: + +```shell +sudo mkfs -t ext4 /dev/sdb +``` +/dev/sdb'nin yeni eklenen ve biçimlendirmek istediğiniz diskiniz olduğundan emin olmalısınız, çünkü bu komut diskteki verileri siler ve diske ext4 dosya sistemi biçimi verir. +```shell +sudo mkdir /mnt/NewDisk +``` +Ardından, yeni biçimlendirilmiş diski kullanabilmek için bu diski önceden bahsettiğimiz /mnt dizinine bağlamamız gerekmektedir. Bunu aşağıdaki komutu kullanarak /mnt/NewDisk dizininde yapabiliriz: + +```shell +sudo mount /dev/sdb newdisk +``` + +Sistemin depolamasını güvenli bir şekilde çıkarmak isteyebilirsiniz. Bunu aşağıdaki komutu kullanarak yapabiliriz: +```shell +sudo umount /dev/sdb +``` + +Eğer bu diski çıkarmak istemiyor ve örneğin bir veritabanı veya başka kalıcı bir kullanım için kullanacaksanız, diskin yeniden başlatma işleminde otomatik olarak bağlı olmasını istersiniz. Bu durumu sağlamak için diski /etc/fstab konfigürasyon dosyasına eklememiz gerekmektedir. Eğer bunu yapmazsanız, makine yeniden başladığında disk kullanılabilir olmayacak ve tekrar manuel olarak işlemi gerçekleştirmeniz gerekecektir. Veriler hala diskte olacak ancak belirtilen dosyaya yapılandırmayı eklemeseniz otomatik olarak bağlanmayacaktır. + +fstab konfigürasyon dosyasını düzenledikten sonra, sudo mount -a komutunu kullanarak çalışmasını kontrol edebilirsiniz. Eğer hata yoksa, yapılan değişiklikler yeniden başlatmalar aracılığıyla kalıcı olacaktır. + +Bir sonraki oturumda bir metin editörü kullanarak bir dosyayı nasıl düzenleyeceğimizi göreceğiz. + +## Recursos + +- [Learn the Linux Fundamentals - Part 1](https://www.youtube.com/watch?v=kPylihJRG70) +- [Linux for hackers (don't worry you don't need to be a hacker!)](https://www.youtube.com/watch?v=VbEx7B_PTOE) +- [Webminal](https://www.webminal.org/) + +Gorusmek Uzere [Gun 17](day17.md). diff --git a/2022/tr/Days/day17.md b/2022/tr/Days/day17.md new file mode 100644 index 0000000..e166b8d --- /dev/null +++ b/2022/tr/Days/day17.md @@ -0,0 +1,90 @@ +## Metin Editörleri - nano vs vim + +Linux sistemlerinin çoğu sunucu olarak kullanılır ve bu sistemlerde genellikle bir grafik arayüzü (GUI) bulunmaz. Linux, temel olarak yapılandırma dosyalarından oluşur ve herhangi bir değişiklik yapabilmek için bu yapılandırma dosyalarını düzenleyebilmek önemlidir. + +Birçok seçenek olsa da, muhtemelen en yaygın kullanılan iki terminal metin editörünü kapsamak iyi olur. nano öğrenmesi daha kolaydır, ancak hızlı değişiklikler ve sınırsız olanaklar söz konusu olduğunda, vim ile çalışmak gerekecektir. Ancak vim'in öğrenme eğrisi daha yüksektir çünkü birçok komutu öğrenmeniz gerekecektir. + +### nano + +- Her sistemde bulunmayabilir. +- Shell tabanlı editörlere başlamak için harikadır. + +Şu komutu çalıştırarak: +```shell +nano 90DaysOfDevOps.txt +``` +Boş bir dosya oluşturacak ve doğrudan editöre gireceksiniz. Buradan metin ekleyebilir ve aşağıda dosya yönetimi için temel komutları bulabilirsiniz. + +![](Images/Day17_Linux1.png) + +Şimdi control x + enter tuşlarını kullanarak çıkabilir ve ardından ls komutunu çalıştırarak ilk metin dosyanızı görebilirsiniz. + +![](Images/Day17_Linux2.png) + +Dosyayı ekranda görmek için aynı dosya ile cat komutunu kullanabilirsiniz. Daha sonra aynı dosya üzerinde ek metin eklemek veya dosyayı değiştirmek için yine nano 90DaysOfDevOps.txt komutunu kullanabilirsiniz. + +nano, yapılandırma dosyalarında küçük değişiklikler yapmak için harika bir seçenektir. + +### vim + +Muhtemelen en yaygın kullanılan metin editörüdür. UNIX'in 1976 yılındaki vi metin editörünün bir türevidir ve birçok özelliği vardır. + +- Tüm Linux dağıtımlarıyla uyumludur. +- İnanılmaz derecede güçlüdür. Vim ile ilgili 7 saatlik tam bir kurs bulmak mümkündür. +- Birçok eklenti mevcuttur. + +Vim'e vim komutunu kullanarak girebilirsiniz veya önceki yeni metin dosyanızı düzenlemek için şu komutu çalıştırabilirsiniz: +```shell +vim 90DaysOfDevOps.txt +``` +vim'e girdiğinizde normal modda olacaksınız, ancak diğer modlar da bulunmaktadır: komut, normal, görsel ve ekleme modları gibi. Metin eklemek için normal moddan ekleme moduna geçmeniz gerekecektir. Bunun için i tuşuna basabilirsiniz. İstediğiniz metni ekledikten sonra, değişiklikleri kaydetmek ve editörden çıkmak için escape tuşuna basarak normal moda dönüp :wq komutunu kullanabilirsiniz. Ayrıca :wq! komutunu kullanarak, örneğin birden fazla kabuk üzerinden düzenleme yapılıyorsa, çıkışı zorlayabilirsiniz. + +![](Images/Day17_Linux3.png) + +Eklediğiniz metni cat komutunu kullanarak kontrol edebilirsiniz. + +vim'in bazı hızlı ve kullanışlı özellikleri vardır. Örneğin, bir metin dosyasında yinelenen bir kelime grubunu değiştirmek istediğinizi varsayalım. Bu, yapılandırma dosyalarında yaygın bir durumdur. Bir örnekte, "Day" kelimesini "90DaysOfDevOps" ile değiştirmek istediğimizi gösterelim. + +![](Images/Day17_Linux4.png) + +Bu durumda, normal modda escape tuşuna basarak normal moda dönüyoruz ve ardından :%s/Day/90DaysOfDevOps komutunu yazıyoruz. + +![](Images/Day17_Linux5.png) + +klediğiniz metni cat komutuyla kontrol edebilirsiniz. + +Vim'in hızlı ve kullanışlı bazı özellikleri vardır. Örneğin, tekrarlanan bir kelime listesi eklediğimizi ve bunu hızlı bir şekilde değiştirmemiz gerektiğini düşünelim. Belki bir yapılandırma dosyasıdır ve ağ adını tekrar ediyoruz, ancak bu değişti ve hızlıca değiştirmek istiyoruz. Aşağıdaki örnekte, "Day" kelimesini değiştirmek istediğimizi gösterelim. + +![](Images/Day17_Linux6.png) + +Şimdi bu kelimeyi "90DaysOfDevOps" ile değiştirmek istiyoruz, bunu yapmak için ESC tuşuna basıp :%s/Day/90DaysOfDevOps komutunu yazabiliriz. + +![](Images/Day17_Linux7.png) + +Enter tuşuna bastığımızda büyülük gerçekleşecek. Sonuç olarak, tüm "Day" kelimeleri "90DaysOfDevOps" ile değiştirilecektir. + +![](Images/Day17_Linux8.png) + +Kopyalama ve yapıştırma, bu editörün gücünü anlamanın anahtarıdır. Kopyalama işlemi gerçekleşmez, sadece atılır. Normal modda klavyede yy kullanarak kopyalayabiliriz. p aynı satıra yapıştırırken, P yeni bir satıra yapıştırır. Çok kolay, değil mi? + +Ayrıca, bir satırı silmek için dd komutunu kullanabilirsiniz. + +Dikkat edin, bir sayıyı işaretledikten sonra yy veya dd komutunu kullanırsanız, sırasıyla seçtiğiniz satır sayısı kadar kopyalanır veya silinir. İnanılmaz! + +Ayrıca, bir dosyada arama yapmanız gerekebilir. Daha önce bir oturumda bahsettiğimiz gibi grep kullanabilirsiniz, ancak vim'i de /aranacak-kelime kullanarak kullanabilirsiniz. Bu, ilk eşleşmeyi bulur ve sonraki eşleşmelere geçmek için n tuşunu kullanırsınız. + +Mümkün olduğunca vim kullanırsanız, yavaş yavaş bir uzman olabilirsiniz. + +Linux'taki en sevdiğiniz metin editörü hangisi sorusu röportajlarda sıkça sorulur ve vim ve nano hakkında en azından bilgi sahibi olmanızı sağlamalısınız. Daha fazla seçenek olsa da, bunların yaygın olarak kullanıldığını göreceksiniz. + +Basit olduğu için nano demek iyidir. En azından bir metin editörünün ne olduğunu anlama becerisini göstermiş olursunuz. Ancak daha yetkin olmak için her ikisiyle de çalışmak önemlidir. + +## Kaynaklar + +- [Vim in 100 Seconds](https://www.youtube.com/watch?v=-txKSRn0qeA) +- [Vim tutorial](https://www.youtube.com/watch?v=IiwGbcd8S7I) +- [Learn the Linux Fundamentals - Part 1](https://www.youtube.com/watch?v=kPylihJRG70) +- [Linux for hackers (don't worry you don't need to be a hacker!)](https://www.youtube.com/watch?v=VbEx7B_PTOE) +- [Guía básica de Vim](https://gitea.vergaracarmona.es/man-linux/Guia-VIM) + +Gorusmek Uzere [Gun 18](day18.md). diff --git a/2022/tr/README.md b/2022/tr/README.md new file mode 100644 index 0000000..7e8d43c --- /dev/null +++ b/2022/tr/README.md @@ -0,0 +1,176 @@ +# 90 Gun DevOps + +

+ 90DaysOfDevOps Logo +

+ +Turkce Versiyonu | [English Version](../README.md) | [中文版本](../zh_cn/README.md) | [繁體中文版本](../zh_tw/README.md)| [日本語版](../ja/README.md) | [Wersja Polska](../pl/README.md) | [Tiếng Việt](../vi/README.md) | [Versión en Castellano](../ess/README.md) + + +## Baslarken + +Bu depo, "DevOps" felsefesinin temel kavramlarını anlamak için bir yolculuğun belgeleridir. 1 Ocak 2022'de başladı ve 90 günlük bir yolculuk yapma fikri var, örneğin, 1 Ocak'ta başlarsanız 31 Mart'ta yolculuğu tamamlayabilirsiniz. 🚀🚀🚀 + +Her uygulamayı belgelemek, diğerlerinin bilgi ve kaynaklarını geliştirerek bunlardan daha iyi faydalanmalarını sağlamak için yapılmaktadır. + +Hedef, "DevOps" alanında 13'ten fazla alana girerek her biri için 1 saatlik bir süre harcamaktır. + +Bu, "DevOps" hakkında her şeyi kapsamayacak, oldukça geniş bir uzmanlık alanıdır. Bunun yerine, yazar [Michael Cade](https://github.com/MichaelCade), tarafından öğrenme ve genel anlayışına katkıda bulunacağını düşündüğü alanları kapsayacaktır. + +Eğer beğenir ve denemek istersen, yazarın bu 90 gunluk macera için ko-fi ile teşekkür edebilirsin. + +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/N4N33YRCS) + +Yazarla en hızlı iletişim kurmanın yolu Twitter üzerinden olabilir: [@MichaelCade1](https://twitter.com/MichaelCade1) + +Ayrıca, orijinal depoya katkıda bulunabilir, beğenebilir veya sorunları [repo original](https://github.com/MichaelCade/90DaysOfDevOps) üzerinden bildirebilirsin. + + +## 90 Gun DevOps Yolculugunun Dokumantasyonu + +- [✔️] ♾️ 1 > [Giris](Days/day01.md) + +### DevOps Nedir ve Neden Kullanılır? + +- [✔️] ♾️ 2 > [Bir DevOps Muhendisinin Sorumluluklari](Days/day02.md) +- [✔️] ♾️ 3 > [DevOps'un Uygulama Odakli Yasam Dongusu](Days/day03.md) +- [✔️] ♾️ 4 > [DevOps & Agile](Days/day04.md) +- [✔️] ♾️ 5 > [Planlama > Kodlama > Insa Etme > Test Etme > Surum Yayinlama > Dagitma > Isletme > Izleme >](Days/day05.md) +- [✔️] ♾️ 6 > [DevOps - Gerçek Hikayeler](Days/day06.md) + +### Bir Programlama Dilini Ogrenmek + +- [✔️] ⌨️ 7 > [DevOps ve Bir Programlama Dilini Ogrenmek](Days/day07.md) +- [✔️] ⌨️ 8 > [DevOps Ortamınızı Yapilandirma ve Hello World](Days/day08.md) +- [✔️] ⌨️ 9 > [Hello World Kodunun Aciklayalim ](Days/day09.md) +- [✔️] ⌨️ 10 > [Go Workspace & Kodu Derleme ve Calistirma](Days/day10.md) +- [✔️] ⌨️ 11 > [Değişkenler, Sabitler ve Veri Tipleri](Days/day11.md) +- [✔️] ⌨️ 12 > [Kullanıcıdan girdi alma, İşaretçiler ve Tamamlanmış Bir Program](Days/day12.md) +- [✔️] ⌨️ 13 > [Yeni Uygulamamızla İlerlemenizi Tweetleme](Days/day13.md) + +### Linux Temellerini Öğrenme + +- [✔️] 🐧 14 > [DevOps & Linux](Days/day14.md) +- [✔️] 🐧 15 > [DevOps için Linux Komutları (aslında herkes için)](Days/day15.md) +- [✔️] 🐧 16 > [Linux Sisteminizin Yönetimi, Dosya Sistemi ve Depolama](Days/day16.md) +- [✔️] 🐧 17 > [Metin Düzenleyicileri - nano vs vim](Days/day17.md) +- [✔️] 🐧 18 > [SSH & Web Server(LAMP)](Days/day18.md) +- [✔️] 🐧 19 > [Bash scriptleri ile Görevleri Otomatikleştirme](Days/day19.md) +- [✔️] 🐧 20 > [Dev Workstation Yapılandırması - Tüm güzel şeyler](Days/day20.md) + +### Network(Ag) Anlayışı + +- [✔️] 🌐 21 > [DevOps & Networking](Days/day21.md) +- [✔️] 🌐 22 > [OSI Modeli - 7 Katman](Days/day22.md) +- [✔️] 🌐 23 > [Ağ Protokolleri](Days/day23.md) +- [✔️] 🌐 24 > [Ağ Otomasyonu](Days/day24.md) +- [✔️] 🌐 25 > [Ağ Otomasyonu için Python](Days/day25.md) +- [✔️] 🌐 26 > [Lab Oluşturma](Days/day26.md) +- [✔️] 🌐 27 > [Python ve Ağlarla Çalışma](Days/day27.md) + +### Sadece bır Cloud Provider Seç + +- [✔️] ☁️ 28 > [DevOps & Bulut](Days/day28.md) +- [✔️] ☁️ 29 > [Microsoft Azure Temelleri](Days/day29.md) +- [✔️] ☁️ 30 > [Microsoft Azure Güvenlik Modelleri](Days/day30.md) +- [✔️] ☁️ 31 > [Microsoft Azure Hesaplama Modelleri](Days/day31.md) +- [✔️] ☁️ 32 > [Microsoft Azure Depolama ve Veritabanı Modelleri](Days/day32.md) +- [✔️] ☁️ 33 > [Microsoft Azure Ağ Modelleri + Azure Yönetimi](Days/day33.md) +- [✔️] ☁️ 34 > [Microsoft Azure Uygulama Senaryoları](Days/day34.md) + +### Etkili Bir Şekilde Git Kullanma + +- [✔️] 📚 35 > [Git - Versiyon Kontrolü](Days/day35.md) +- [✔️] 📚 36 > [Git'in Kurulumu ve Yapılandırılması](Days/day36.md) +- [✔️] 📚 37 > [Git'i Tanıma](Days/day37.md) +- [✔️] 📚 38 > [Başlatma ve Değişiklikler](Days/day38.md) +- [✔️] 📚 39 > [Görselleştirme, İptal Etme ve Geri Yükleme](Days/day39.md) +- [✔️] 📚 40 > [Kod İçin Sosyal Ağ](Days/day40.md) +- [✔️] 📚 41 > [Açık Kaynak Akışı](Days/day41.md) + +### Containers(Konteynerler) + +- [✔️] 🏗️ 42 > [Containers](Days/day42.md) +- [✔️] 🏗️ 43 > [Docker Nedir ve Nasıl Kurulur?](Days/day43.md) +- [✔️] 🏗️ 44 > [Docker İmajları ve Docker Desktop ile Uygulama](Days/day44.md) +- [✔️] 🏗️ 45 > [Docker İmajının Yapısı](Days/day45.md) +- [✔️] 🏗️ 46 > [Docker Compose](Days/day46.md) +- [✔️] 🏗️ 47 > [Docker Ağları ve Güvenliği](Days/day47.md) +- [✔️] 🏗️ 48 > [Docker'a Alternatifler](Days/day48.md) + +### Kubernetes + +- [✔️] ☸ 49 > [Kubernetes](Days/day49.md) +- [✔️] ☸ 50 > [Kubernetes Platform Seçimi](Days/day50.md) +- [✔️] ☸ 51 > [İlk Kubernetes Cluster Dağıtımı(Deployment)](Days/day51.md) +- [✔️] ☸ 52 > [Çok Node'lu Kubernetes Kümesinin Yapılandırılması](Days/day52.md) +- [✔️] ☸ 53 > [Rancher Genel Bakış - Uygulamaya Geçmek](Days/day53.md) +- [✔️] ☸ 54 > [Kubernetes'te Uygulama Dağıtımı](Days/day54.md) +- [✔️] ☸ 55 > [Kubernetes'te State ve Ingress](Days/day55.md) + +### Infrastructure as a Code(IaC) Öğrenme + +- [✔️] 🤖 56 > [IaC](Days/day56.md) +- [✔️] 🤖 57 > [IaC - Altyapıyı Kod Olarak Yönetmek](Days/day57.md) +- [✔️] 🤖 58 > [HashiCorp Configuration Language (HCL)](Days/day58.md) +- [✔️] 🤖 59 > [Terraform ile Sanal Makine Oluşturma ve Değişkenler](Days/day59.md) +- [✔️] 🤖 60 > [Docker Konteynerleri, Provisioner'lar ve Modüller](Days/day60.md) +- [✔️] 🤖 61 > [Kubernetes ve Çoklu Ortamlar](Days/day61.md) +- [✔️] 🤖 62 > [Testler, Araçlar ve Alternatifler](Days/day62.md) + +### Yapılandırma Yönetimini Otomatikleştirme + +- [✔️] 📜 63 > [Yapılandırma Yonetimi](Days/day63.md) +- [✔️] 📜 64 > [Ansible: Ilk Adımlar](Days/day64.md) +- [✔️] 📜 65 > [Ansible Playbooklar](Days/day65.md) +- [✔️] 📜 66 > [Ansible Playbookların Devamı...](Days/day66.md) +- [✔️] 📜 67 > [Roller Kullanma ve Bir Loadbalancer Dağıtımı](Days/day67.md) +- [✔️] 📜 68 > [Etiketler, Değişkenler, Envanter ve Veritabanı Sunucusu Yapılandırması](Days/day68.md) +- [✔️] 📜 69 > [Ansible Hakkında Diğer Konular - Automation Controller, AWX, Vault](Days/day69.md) + +### CI/CD Pipeline Oluşturma + +- [✔️] 🔄 70 > [CI/CD Pipelinelar](Days/day70.md) +- [✔️] 🔄 71 > [Jenkins Nedir?](Days/day71.md) +- [✔️] 🔄 72 > [Jenkins ile Pratik Uygulama](Days/day72.md) +- [✔️] 🔄 73 > [Jenkins Pipeline Oluşturma](Days/day73.md) +- [✔️] 🔄 74 > [Hello World - Jenkinsfile Uygulama Pipeline'ı](Days/day74.md) +- [✔️] 🔄 75 > [GitHub Actions Genel Bakış](Days/day75.md) +- [✔️] 🔄 76 > [ArgoCD Genel Bakış](Days/day76.md) + +### İzleme, Log Yönetimi ve Veri Görselleştirme + +- [✔️] 📈 77 > [İzleme](Days/day77.md) +- [✔️] 📈 78 > [Pratik İzleme Araçları](Days/day78.md) +- [✔️] 📈 79 > [Log Yönetimi](Days/day79.md) +- [✔️] 📈 80 > [ELK Stack](Days/day80.md) +- [✔️] 📈 81 > [Fluentd & FluentBit](Days/day81.md) +- [✔️] 📈 82 > [EFK Stack](Days/day82.md) +- [✔️] 📈 83 > [Veri Görselleştirme - Grafana](Days/day83.md) + +### Verilerinizi Depolama ve Koruma + +- [✔️] 🗃️ 84 > [Veri Yonetimi](Days/day84.md) +- [✔️] 🗃️ 85 > [Veri Hizmetleri](Days/day85.md) +- [✔️] 🗃️ 86 > [Platformların Yedeklenmesi](Days/day86.md) +- [✔️] 🗃️ 87 > [Yedekleme ve Veri Kurtarma Uygulamaları](Days/day87.md) +- [✔️] 🗃️ 88 > [Uygulama Odaklı Yedekleme](Days/day88.md) +- [✔️] 🗃️ 89 > [Felaket Kurtarma](Days/day89.md) +- [✔️] 🗃️ 90 > [Veri ve Uygulama Taşınabilirliği](Days/day90.md) + +## Lisans + +Shield: [![CC BY-NC-SA 4.0][cc-by-nc-sa-shield]][cc-by-nc-sa] + +Bu eser +[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][cc-by-nc-sa] lisansı altındadır. + +[![CC BY-NC-SA 4.0][cc-by-nc-sa-image]][cc-by-nc-sa] + +## Yıldız Gecmişi + +[![Star History Chart](https://api.star-history.com/svg?repos=MichaelCade/90DaysOfDevOps&type=Timeline)](https://star-history.com/#MichaelCade/90DaysOfDevOps&Timeline) + +[cc-by-nc-sa]: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.es +[cc-by-nc-sa-image]: https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png +[cc-by-nc-sa-shield]: https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg diff --git a/2022/tr/logo.png b/2022/tr/logo.png new file mode 100644 index 0000000..2d2ae3c Binary files /dev/null and b/2022/tr/logo.png differ