diff --git a/README.md b/README.md index 69fc52728..0a62d61f9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ 90DaysOfDevOps Logo

-English Version | [中文版本](zh_cn/README.md) +English Version | [中文版本](zh_cn/README.md) | [繁體中文版本](zh_tw/README.md) This repository is used to document my journey on getting a better foundational knowledge of "DevOps". I will be starting this journey on the 1st January 2022 but the idea is that we take 90 days which just so happens to be January 1st to March 31st. diff --git a/zh_tw/Days/CICD/Jenkins/Pipeline/Dockerfile b/zh_tw/Days/CICD/Jenkins/Pipeline/Dockerfile new file mode 100644 index 000000000..cea34ccd0 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/CICD/Jenkins/Pipeline/Jenkinsfile b/zh_tw/Days/CICD/Jenkins/Pipeline/Jenkinsfile new file mode 100644 index 000000000..100961d48 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/CICD/Jenkins/Pipeline/index.html b/zh_tw/Days/CICD/Jenkins/Pipeline/index.html new file mode 100644 index 000000000..56ecc697c --- /dev/null +++ b/zh_tw/Days/CICD/Jenkins/Pipeline/index.html @@ -0,0 +1,3 @@ +
+    Hello World!
+    
\ No newline at end of file diff --git a/zh_tw/Days/CICD/Jenkins/jenkins-namespace.yml b/zh_tw/Days/CICD/Jenkins/jenkins-namespace.yml new file mode 100644 index 000000000..69a409920 --- /dev/null +++ b/zh_tw/Days/CICD/Jenkins/jenkins-namespace.yml @@ -0,0 +1,5 @@ +--- +apiVersion: v1 +kind: Namespace +metadata: + name: jenkins diff --git a/zh_tw/Days/CICD/Jenkins/jenkins-sa.yml b/zh_tw/Days/CICD/Jenkins/jenkins-sa.yml new file mode 100644 index 000000000..e161dc319 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/CICD/Jenkins/jenkins-values.yml b/zh_tw/Days/CICD/Jenkins/jenkins-values.yml new file mode 100644 index 000000000..0c5fff729 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/CICD/Jenkins/jenkins-volume.yml b/zh_tw/Days/CICD/Jenkins/jenkins-volume.yml new file mode 100644 index 000000000..fc6062628 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/CICD/Jenkins/steps.md b/zh_tw/Days/CICD/Jenkins/steps.md new file mode 100644 index 000000000..55e3c4bbf --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-parameters.json b/zh_tw/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-parameters.json new file mode 100644 index 000000000..a8c859167 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-template.json b/zh_tw/Days/Cloud/01VirtualNetworking/Mod04_90DaysOfDevOps-vms-loop-template.json new file mode 100644 index 000000000..c998729d9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/01VirtualNetworking/Module4_90DaysOfDevOps.ps1 b/zh_tw/Days/Cloud/01VirtualNetworking/Module4_90DaysOfDevOps.ps1 new file mode 100644 index 000000000..e3be017b1 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-parameters.json b/zh_tw/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-parameters.json new file mode 100644 index 000000000..fabe43e93 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-template.json b/zh_tw/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps-vms-loop-template.json new file mode 100644 index 000000000..730971b49 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps.ps1 b/zh_tw/Days/Cloud/02TrafficManagement/Mod06_90DaysOfDevOps.ps1 new file mode 100644 index 000000000..321b3279e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/03Storage/LICENSE b/zh_tw/Days/Cloud/03Storage/LICENSE new file mode 100644 index 000000000..183d56b14 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-parameters.json b/zh_tw/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-parameters.json new file mode 100644 index 000000000..fabe43e93 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-template.json b/zh_tw/Days/Cloud/03Storage/Mod07_90DaysOfDevOps-vm-template.json new file mode 100644 index 000000000..46ab60b4a --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/03Storage/Mod07_90DaysOfDevOps.ps1 b/zh_tw/Days/Cloud/03Storage/Mod07_90DaysOfDevOps.ps1 new file mode 100644 index 000000000..02d76c8ac --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Cloud/04Serverless/Mod09a_90DaysOfDevOps.ps1 b/zh_tw/Days/Cloud/04Serverless/Mod09a_90DaysOfDevOps.ps1 new file mode 100644 index 000000000..58914a971 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/Vagrantfile b/zh_tw/Days/Configmgmt/Vagrantfile new file mode 100644 index 000000000..000421869 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario1/playbook1.yml b/zh_tw/Days/Configmgmt/ansible-scenario1/playbook1.yml new file mode 100644 index 000000000..a13ed00ec --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario1/templates/index.html.j2 b/zh_tw/Days/Configmgmt/ansible-scenario1/templates/index.html.j2 new file mode 100644 index 000000000..acdefbec8 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario1/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}

+ + \ No newline at end of file diff --git a/zh_tw/Days/Configmgmt/ansible-scenario1/templates/ports.conf.j2 b/zh_tw/Days/Configmgmt/ansible-scenario1/templates/ports.conf.j2 new file mode 100644 index 000000000..179352276 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario2/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario2/handlers/main.yml new file mode 100644 index 000000000..ff3da8d6b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario2/playbook2.yml b/zh_tw/Days/Configmgmt/ansible-scenario2/playbook2.yml new file mode 100644 index 000000000..a7a8cca52 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario2/tasks/apache2_install.yml b/zh_tw/Days/Configmgmt/ansible-scenario2/tasks/apache2_install.yml new file mode 100644 index 000000000..c75b06bdf --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario2/templates/index.html.j2 b/zh_tw/Days/Configmgmt/ansible-scenario2/templates/index.html.j2 new file mode 100644 index 000000000..acdefbec8 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario2/templates/index.html.j2 @@ -0,0 +1,5 @@ + + +

{{ html_welcome_msg }}

+ + \ No newline at end of file diff --git a/zh_tw/Days/Configmgmt/ansible-scenario2/templates/ports.conf.j2 b/zh_tw/Days/Configmgmt/ansible-scenario2/templates/ports.conf.j2 new file mode 100644 index 000000000..179352276 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/playbook3.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/playbook3.yml new file mode 100644 index 000000000..4de44c3da --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/.travis.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/.travis.yml new file mode 100644 index 000000000..36bbf6208 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/README.md b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/README.md new file mode 100644 index 000000000..225dd44b9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/defaults/main.yml new file mode 100644 index 000000000..118c75812 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/handlers/main.yml new file mode 100644 index 000000000..ff3da8d6b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/apache2_install.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 000000000..c75b06bdf --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tasks/main.yml new file mode 100644 index 000000000..6024204d6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/index.html.j2 b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/index.html.j2 new file mode 100644 index 000000000..acdefbec8 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/ports.conf.j2 b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 000000000..179352276 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/test.yml new file mode 100644 index 000000000..716bef3d1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/vars/main.yml new file mode 100644 index 000000000..d34faf421 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario3/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/playbook4.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/playbook4.yml new file mode 100644 index 000000000..20342930b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/.travis.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/.travis.yml new file mode 100644 index 000000000..36bbf6208 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/README.md b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/README.md new file mode 100644 index 000000000..225dd44b9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/defaults/main.yml new file mode 100644 index 000000000..118c75812 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/handlers/main.yml new file mode 100644 index 000000000..ff3da8d6b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/apache2_install.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 000000000..c75b06bdf --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tasks/main.yml new file mode 100644 index 000000000..6024204d6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/index.html.j2 b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/index.html.j2 new file mode 100644 index 000000000..acdefbec8 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/ports.conf.j2 b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 000000000..179352276 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/test.yml new file mode 100644 index 000000000..716bef3d1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/vars/main.yml new file mode 100644 index 000000000..d34faf421 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/defaults/main.yml new file mode 100644 index 000000000..28cf403f3 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/handlers/main.yml new file mode 100644 index 000000000..d29b8e941 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tasks/install_tools.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tasks/install_tools.yml new file mode 100644 index 000000000..653bf9505 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tasks/main.yml new file mode 100644 index 000000000..0f9c34d1e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tests/test.yml new file mode 100644 index 000000000..1cbebf5c2 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/vars/main.yml new file mode 100644 index 000000000..f83eed771 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/common/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/defaults/main.yml new file mode 100644 index 000000000..a28e129f1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/handlers/main.yml new file mode 100644 index 000000000..494b44410 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/configure_nginx.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/configure_nginx.yml new file mode 100644 index 000000000..66e02d33b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/install_packages.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/install_packages.yml new file mode 100644 index 000000000..7feeda868 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tasks/main.yml new file mode 100644 index 000000000..abb54a9d9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/templates/mysite.j2 b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/templates/mysite.j2 new file mode 100644 index 000000000..7c7f56210 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/test.yml new file mode 100644 index 000000000..6750534da --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/vars/main.yml new file mode 100644 index 000000000..4d5dfe2d7 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario4/roles/nginx/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/facts.json b/zh_tw/Days/Configmgmt/ansible-scenario5/facts.json new file mode 100644 index 000000000..fdc71e2ce --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/mysite.j2 b/zh_tw/Days/Configmgmt/ansible-scenario5/mysite.j2 new file mode 100644 index 000000000..2eb2ecd95 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/playbook5.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/playbook5.yml new file mode 100644 index 000000000..419572508 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/.travis.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/.travis.yml new file mode 100644 index 000000000..36bbf6208 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/README.md b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/README.md new file mode 100644 index 000000000..225dd44b9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/defaults/main.yml new file mode 100644 index 000000000..118c75812 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/handlers/main.yml new file mode 100644 index 000000000..ff3da8d6b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/apache2_install.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 000000000..c75b06bdf --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tasks/main.yml new file mode 100644 index 000000000..6024204d6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/index.html.j2 b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/index.html.j2 new file mode 100644 index 000000000..acdefbec8 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/ports.conf.j2 b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 000000000..179352276 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/test.yml new file mode 100644 index 000000000..716bef3d1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/vars/main.yml new file mode 100644 index 000000000..d34faf421 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/defaults/main.yml new file mode 100644 index 000000000..28cf403f3 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/handlers/main.yml new file mode 100644 index 000000000..d29b8e941 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tasks/install_tools.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tasks/install_tools.yml new file mode 100644 index 000000000..653bf9505 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tasks/main.yml new file mode 100644 index 000000000..0f9c34d1e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tests/test.yml new file mode 100644 index 000000000..1cbebf5c2 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/vars/main.yml new file mode 100644 index 000000000..f83eed771 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/common/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/defaults/main.yml new file mode 100644 index 000000000..a28e129f1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/handlers/main.yml new file mode 100644 index 000000000..494b44410 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/configure_nginx.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/configure_nginx.yml new file mode 100644 index 000000000..66e02d33b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/install_packages.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/install_packages.yml new file mode 100644 index 000000000..7feeda868 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tasks/main.yml new file mode 100644 index 000000000..abb54a9d9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/templates/mysite.j2 b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/templates/mysite.j2 new file mode 100644 index 000000000..7c7f56210 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/test.yml new file mode 100644 index 000000000..6750534da --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/vars/main.yml new file mode 100644 index 000000000..4d5dfe2d7 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario5/roles/nginx/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/group_vars/all/common_variables.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/group_vars/all/common_variables.yml new file mode 100644 index 000000000..6e530d0a6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/playbook6.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/playbook6.yml new file mode 100644 index 000000000..f5428308b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/.travis.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/.travis.yml new file mode 100644 index 000000000..36bbf6208 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/README.md b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/README.md new file mode 100644 index 000000000..225dd44b9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/defaults/main.yml new file mode 100644 index 000000000..118c75812 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/handlers/main.yml new file mode 100644 index 000000000..ff3da8d6b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/apache2_install.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 000000000..c75b06bdf --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tasks/main.yml new file mode 100644 index 000000000..6024204d6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/index.html.j2 b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/index.html.j2 new file mode 100644 index 000000000..efa509512 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/ports.conf.j2 b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 000000000..179352276 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/test.yml new file mode 100644 index 000000000..716bef3d1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/vars/main.yml new file mode 100644 index 000000000..d34faf421 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/defaults/main.yml new file mode 100644 index 000000000..28cf403f3 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/handlers/main.yml new file mode 100644 index 000000000..d29b8e941 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tasks/install_tools.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tasks/install_tools.yml new file mode 100644 index 000000000..653bf9505 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tasks/main.yml new file mode 100644 index 000000000..0f9c34d1e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tests/test.yml new file mode 100644 index 000000000..1cbebf5c2 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/vars/main.yml new file mode 100644 index 000000000..f83eed771 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/common/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/defaults/main.yml new file mode 100644 index 000000000..a28e129f1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/handlers/main.yml new file mode 100644 index 000000000..494b44410 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/configure_nginx.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/configure_nginx.yml new file mode 100644 index 000000000..66e02d33b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/install_packages.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/install_packages.yml new file mode 100644 index 000000000..7feeda868 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tasks/main.yml new file mode 100644 index 000000000..abb54a9d9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/templates/mysite.j2 b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/templates/mysite.j2 new file mode 100644 index 000000000..ec5499d06 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/test.yml new file mode 100644 index 000000000..6750534da --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/vars/main.yml new file mode 100644 index 000000000..4d5dfe2d7 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario6/roles/nginx/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/group_vars/all/common_variables.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/group_vars/all/common_variables.yml new file mode 100644 index 000000000..9882bfa2d --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/playbook7.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/playbook7.yml new file mode 100644 index 000000000..18ab4372e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/.travis.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/.travis.yml new file mode 100644 index 000000000..36bbf6208 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/README.md b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/README.md new file mode 100644 index 000000000..225dd44b9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/defaults/main.yml new file mode 100644 index 000000000..118c75812 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/handlers/main.yml new file mode 100644 index 000000000..ff3da8d6b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/apache2_install.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/apache2_install.yml new file mode 100644 index 000000000..c75b06bdf --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tasks/main.yml new file mode 100644 index 000000000..6024204d6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/index.html.j2 b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/index.html.j2 new file mode 100644 index 000000000..efa509512 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/ports.conf.j2 b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/templates/ports.conf.j2 new file mode 100644 index 000000000..179352276 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/test.yml new file mode 100644 index 000000000..716bef3d1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/vars/main.yml new file mode 100644 index 000000000..d34faf421 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/apache2/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/apache2 diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/defaults/main.yml new file mode 100644 index 000000000..28cf403f3 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/handlers/main.yml new file mode 100644 index 000000000..d29b8e941 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# handlers file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tasks/install_tools.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tasks/install_tools.yml new file mode 100644 index 000000000..653bf9505 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tasks/main.yml new file mode 100644 index 000000000..0f9c34d1e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tests/test.yml new file mode 100644 index 000000000..1cbebf5c2 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/vars/main.yml new file mode 100644 index 000000000..f83eed771 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/common/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/common diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/README.md b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/README.md new file mode 100644 index 000000000..225dd44b9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/defaults/main.yml new file mode 100644 index 000000000..b821cb873 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/handlers/main.yml new file mode 100644 index 000000000..156f89548 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/meta/main.yml new file mode 100644 index 000000000..227ad9c34 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/install_mysql.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/install_mysql.yml new file mode 100644 index 000000000..e6d66b174 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/main.yml new file mode 100644 index 000000000..51170aee5 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/setup_mysql.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tasks/setup_mysql.yml new file mode 100644 index 000000000..ce2dac142 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/templates/my.cnf.j2 b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/templates/my.cnf.j2 new file mode 100644 index 000000000..b4a65fda1 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/tests/test.yml new file mode 100644 index 000000000..56f6b9cff --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/mysql/vars/main.yml new file mode 100644 index 000000000..d8f8f4005 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/defaults/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/defaults/main.yml new file mode 100644 index 000000000..a28e129f1 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/handlers/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/handlers/main.yml new file mode 100644 index 000000000..494b44410 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/meta/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/meta/main.yml new file mode 100644 index 000000000..c572acc9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/configure_nginx.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/configure_nginx.yml new file mode 100644 index 000000000..66e02d33b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/install_packages.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/install_packages.yml new file mode 100644 index 000000000..7feeda868 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tasks/main.yml new file mode 100644 index 000000000..abb54a9d9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/templates/mysite.j2 b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/templates/mysite.j2 new file mode 100644 index 000000000..ec5499d06 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/inventory b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/inventory new file mode 100644 index 000000000..878877b07 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/test.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/test.yml new file mode 100644 index 000000000..6750534da --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - roles/nginx diff --git a/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/vars/main.yml b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/vars/main.yml new file mode 100644 index 000000000..4d5dfe2d7 --- /dev/null +++ b/zh_tw/Days/Configmgmt/ansible-scenario7/roles/nginx/vars/main.yml @@ -0,0 +1,2 @@ +--- +# vars file for roles/nginx diff --git a/zh_tw/Days/Configmgmt/simple_play.yml b/zh_tw/Days/Configmgmt/simple_play.yml new file mode 100644 index 000000000..063d219fe --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Containers/.dockerignore b/zh_tw/Days/Containers/.dockerignore new file mode 100644 index 000000000..e69de29bb diff --git a/zh_tw/Days/Containers/Dockerfile b/zh_tw/Days/Containers/Dockerfile new file mode 100644 index 000000000..ce51a7e89 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Containers/elasticsearch-logstash-kibana/README.md b/zh_tw/Days/Containers/elasticsearch-logstash-kibana/README.md new file mode 100644 index 000000000..bad26e822 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Containers/elasticsearch-logstash-kibana/docker-compose.yml b/zh_tw/Days/Containers/elasticsearch-logstash-kibana/docker-compose.yml new file mode 100644 index 000000000..fec70c12e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Containers/elasticsearch-logstash-kibana/logstash/nginx.log b/zh_tw/Days/Containers/elasticsearch-logstash-kibana/logstash/nginx.log new file mode 100644 index 000000000..77007d4fe --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Containers/elasticsearch-logstash-kibana/logstash/pipeline/logstash-nginx.config b/zh_tw/Days/Containers/elasticsearch-logstash-kibana/logstash/pipeline/logstash-nginx.config new file mode 100644 index 000000000..0e7d7edd4 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Containers/my_wordpress/docker-compose.yaml b/zh_tw/Days/Containers/my_wordpress/docker-compose.yaml new file mode 100644 index 000000000..b78bd2130 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Data/mysql-blueprint.yml b/zh_tw/Days/Data/mysql-blueprint.yml new file mode 100644 index 000000000..d69274579 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day11_example1.go b/zh_tw/Days/Go/day11_example1.go new file mode 100644 index 000000000..8e0a180ad --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day11_example2.go b/zh_tw/Days/Go/day11_example2.go new file mode 100644 index 000000000..47b7d4b8f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day11_example3.go b/zh_tw/Days/Go/day11_example3.go new file mode 100644 index 000000000..a3e619203 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day11_example4.go b/zh_tw/Days/Go/day11_example4.go new file mode 100644 index 000000000..255bab9d6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day12_example1.go b/zh_tw/Days/Go/day12_example1.go new file mode 100644 index 000000000..81a30d469 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day12_example2.go b/zh_tw/Days/Go/day12_example2.go new file mode 100644 index 000000000..081a9ce43 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day12_example3.go b/zh_tw/Days/Go/day12_example3.go new file mode 100644 index 000000000..0b5478d8b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day12_example4.go b/zh_tw/Days/Go/day12_example4.go new file mode 100644 index 000000000..1a0371257 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day13_example1.go b/zh_tw/Days/Go/day13_example1.go new file mode 100644 index 000000000..0b5478d8b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day13_example2.go b/zh_tw/Days/Go/day13_example2.go new file mode 100644 index 000000000..7487cba7e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/day13_example3.go b/zh_tw/Days/Go/day13_example3.go new file mode 100644 index 000000000..c761a0f5d --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Go/hello.go b/zh_tw/Days/Go/hello.go new file mode 100644 index 000000000..671b0f7ba --- /dev/null +++ b/zh_tw/Days/Go/hello.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Until tomorrow #90DaysOfDevOps") +} diff --git a/zh_tw/Days/Go/makefile b/zh_tw/Days/Go/makefile new file mode 100644 index 000000000..99b80ab48 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/IaC/Docker-Wordpress/docker-wordpress.tf b/zh_tw/Days/IaC/Docker-Wordpress/docker-wordpress.tf new file mode 100644 index 000000000..8752fea8f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/IaC/Docker/docker.tf b/zh_tw/Days/IaC/Docker/docker.tf new file mode 100644 index 000000000..465074052 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/IaC/Hello-world/main.tf b/zh_tw/Days/IaC/Hello-world/main.tf new file mode 100644 index 000000000..3f06a2236 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/IaC/Kubernetes/kubernetes.tf b/zh_tw/Days/IaC/Kubernetes/kubernetes.tf new file mode 100644 index 000000000..18ed09bbf --- /dev/null +++ b/zh_tw/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/zh_tw/Days/IaC/Virtualbox/virtualbox.tf b/zh_tw/Days/IaC/Virtualbox/virtualbox.tf new file mode 100644 index 000000000..c85e31d1a --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Images/2022-02-03_08-02-12.png b/zh_tw/Days/Images/2022-02-03_08-02-12.png new file mode 100644 index 000000000..bb4de2872 Binary files /dev/null and b/zh_tw/Days/Images/2022-02-03_08-02-12.png differ diff --git a/zh_tw/Days/Images/Day10_Go1.png b/zh_tw/Days/Images/Day10_Go1.png new file mode 100644 index 000000000..644f8e005 Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go1.png differ diff --git a/zh_tw/Days/Images/Day10_Go2.png b/zh_tw/Days/Images/Day10_Go2.png new file mode 100644 index 000000000..34ed4891a Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go2.png differ diff --git a/zh_tw/Days/Images/Day10_Go3.png b/zh_tw/Days/Images/Day10_Go3.png new file mode 100644 index 000000000..e75e291e0 Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go3.png differ diff --git a/zh_tw/Days/Images/Day10_Go4.png b/zh_tw/Days/Images/Day10_Go4.png new file mode 100644 index 000000000..6fedb67de Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go4.png differ diff --git a/zh_tw/Days/Images/Day10_Go5.png b/zh_tw/Days/Images/Day10_Go5.png new file mode 100644 index 000000000..a421e5bc8 Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go5.png differ diff --git a/zh_tw/Days/Images/Day10_Go6.png b/zh_tw/Days/Images/Day10_Go6.png new file mode 100644 index 000000000..06e95ca9a Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go6.png differ diff --git a/zh_tw/Days/Images/Day10_Go7.png b/zh_tw/Days/Images/Day10_Go7.png new file mode 100644 index 000000000..8e2ba0eb2 Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go7.png differ diff --git a/zh_tw/Days/Images/Day10_Go8.png b/zh_tw/Days/Images/Day10_Go8.png new file mode 100644 index 000000000..259c4d9e3 Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go8.png differ diff --git a/zh_tw/Days/Images/Day10_Go9.png b/zh_tw/Days/Images/Day10_Go9.png new file mode 100644 index 000000000..593b87926 Binary files /dev/null and b/zh_tw/Days/Images/Day10_Go9.png differ diff --git a/zh_tw/Days/Images/Day11_Go1.png b/zh_tw/Days/Images/Day11_Go1.png new file mode 100644 index 000000000..9112ec62a Binary files /dev/null and b/zh_tw/Days/Images/Day11_Go1.png differ diff --git a/zh_tw/Days/Images/Day11_Go2.png b/zh_tw/Days/Images/Day11_Go2.png new file mode 100644 index 000000000..f33f82eeb Binary files /dev/null and b/zh_tw/Days/Images/Day11_Go2.png differ diff --git a/zh_tw/Days/Images/Day11_Go3.png b/zh_tw/Days/Images/Day11_Go3.png new file mode 100644 index 000000000..892d5440d Binary files /dev/null and b/zh_tw/Days/Images/Day11_Go3.png differ diff --git a/zh_tw/Days/Images/Day12_Go1.png b/zh_tw/Days/Images/Day12_Go1.png new file mode 100644 index 000000000..a98548595 Binary files /dev/null and b/zh_tw/Days/Images/Day12_Go1.png differ diff --git a/zh_tw/Days/Images/Day12_Go2.png b/zh_tw/Days/Images/Day12_Go2.png new file mode 100644 index 000000000..e4dfc3881 Binary files /dev/null and b/zh_tw/Days/Images/Day12_Go2.png differ diff --git a/zh_tw/Days/Images/Day12_Go3.png b/zh_tw/Days/Images/Day12_Go3.png new file mode 100644 index 000000000..f42c1e420 Binary files /dev/null and b/zh_tw/Days/Images/Day12_Go3.png differ diff --git a/zh_tw/Days/Images/Day12_Go4.png b/zh_tw/Days/Images/Day12_Go4.png new file mode 100644 index 000000000..e539d8e24 Binary files /dev/null and b/zh_tw/Days/Images/Day12_Go4.png differ diff --git a/zh_tw/Days/Images/Day13_Go1.png b/zh_tw/Days/Images/Day13_Go1.png new file mode 100644 index 000000000..8bb10c88b Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go1.png differ diff --git a/zh_tw/Days/Images/Day13_Go2.png b/zh_tw/Days/Images/Day13_Go2.png new file mode 100644 index 000000000..72e7352d3 Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go2.png differ diff --git a/zh_tw/Days/Images/Day13_Go3.png b/zh_tw/Days/Images/Day13_Go3.png new file mode 100644 index 000000000..f7adc1af3 Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go3.png differ diff --git a/zh_tw/Days/Images/Day13_Go4.png b/zh_tw/Days/Images/Day13_Go4.png new file mode 100644 index 000000000..a6a4a2838 Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go4.png differ diff --git a/zh_tw/Days/Images/Day13_Go5.png b/zh_tw/Days/Images/Day13_Go5.png new file mode 100644 index 000000000..100cd3cab Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go5.png differ diff --git a/zh_tw/Days/Images/Day13_Go6.png b/zh_tw/Days/Images/Day13_Go6.png new file mode 100644 index 000000000..e24f7541d Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go6.png differ diff --git a/zh_tw/Days/Images/Day13_Go7.png b/zh_tw/Days/Images/Day13_Go7.png new file mode 100644 index 000000000..d2c507695 Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go7.png differ diff --git a/zh_tw/Days/Images/Day13_Go8.png b/zh_tw/Days/Images/Day13_Go8.png new file mode 100644 index 000000000..97697535d Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go8.png differ diff --git a/zh_tw/Days/Images/Day13_Go9.png b/zh_tw/Days/Images/Day13_Go9.png new file mode 100644 index 000000000..f29e646a9 Binary files /dev/null and b/zh_tw/Days/Images/Day13_Go9.png differ diff --git a/zh_tw/Days/Images/Day14_Linux1.png b/zh_tw/Days/Images/Day14_Linux1.png new file mode 100644 index 000000000..edeaee930 Binary files /dev/null and b/zh_tw/Days/Images/Day14_Linux1.png differ diff --git a/zh_tw/Days/Images/Day14_Linux2.png b/zh_tw/Days/Images/Day14_Linux2.png new file mode 100644 index 000000000..c7dc60f3c Binary files /dev/null and b/zh_tw/Days/Images/Day14_Linux2.png differ diff --git a/zh_tw/Days/Images/Day14_Linux3.png b/zh_tw/Days/Images/Day14_Linux3.png new file mode 100644 index 000000000..b42aeb6ee Binary files /dev/null and b/zh_tw/Days/Images/Day14_Linux3.png differ diff --git a/zh_tw/Days/Images/Day14_Linux4.png b/zh_tw/Days/Images/Day14_Linux4.png new file mode 100644 index 000000000..20f690450 Binary files /dev/null and b/zh_tw/Days/Images/Day14_Linux4.png differ diff --git a/zh_tw/Days/Images/Day14_Linux5.png b/zh_tw/Days/Images/Day14_Linux5.png new file mode 100644 index 000000000..62242bca9 Binary files /dev/null and b/zh_tw/Days/Images/Day14_Linux5.png differ diff --git a/zh_tw/Days/Images/Day15_Linux1.png b/zh_tw/Days/Images/Day15_Linux1.png new file mode 100644 index 000000000..f58f962fe Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux1.png differ diff --git a/zh_tw/Days/Images/Day15_Linux10.png b/zh_tw/Days/Images/Day15_Linux10.png new file mode 100644 index 000000000..4ef36c303 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux10.png differ diff --git a/zh_tw/Days/Images/Day15_Linux11.png b/zh_tw/Days/Images/Day15_Linux11.png new file mode 100644 index 000000000..b2f4a6bcd Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux11.png differ diff --git a/zh_tw/Days/Images/Day15_Linux12.png b/zh_tw/Days/Images/Day15_Linux12.png new file mode 100644 index 000000000..0c00cc28a Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux12.png differ diff --git a/zh_tw/Days/Images/Day15_Linux13.png b/zh_tw/Days/Images/Day15_Linux13.png new file mode 100644 index 000000000..a254cfa22 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux13.png differ diff --git a/zh_tw/Days/Images/Day15_Linux14.png b/zh_tw/Days/Images/Day15_Linux14.png new file mode 100644 index 000000000..2f9d87ca2 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux14.png differ diff --git a/zh_tw/Days/Images/Day15_Linux15.png b/zh_tw/Days/Images/Day15_Linux15.png new file mode 100644 index 000000000..fbfa6466e Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux15.png differ diff --git a/zh_tw/Days/Images/Day15_Linux16.png b/zh_tw/Days/Images/Day15_Linux16.png new file mode 100644 index 000000000..406cb71c2 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux16.png differ diff --git a/zh_tw/Days/Images/Day15_Linux17.png b/zh_tw/Days/Images/Day15_Linux17.png new file mode 100644 index 000000000..767e1f8c3 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux17.png differ diff --git a/zh_tw/Days/Images/Day15_Linux18.png b/zh_tw/Days/Images/Day15_Linux18.png new file mode 100644 index 000000000..9a9bc34cc Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux18.png differ diff --git a/zh_tw/Days/Images/Day15_Linux19.png b/zh_tw/Days/Images/Day15_Linux19.png new file mode 100644 index 000000000..2cb3c41c1 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux19.png differ diff --git a/zh_tw/Days/Images/Day15_Linux2.png b/zh_tw/Days/Images/Day15_Linux2.png new file mode 100644 index 000000000..b41a220ce Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux2.png differ diff --git a/zh_tw/Days/Images/Day15_Linux20.png b/zh_tw/Days/Images/Day15_Linux20.png new file mode 100644 index 000000000..41ddc9f78 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux20.png differ diff --git a/zh_tw/Days/Images/Day15_Linux21.png b/zh_tw/Days/Images/Day15_Linux21.png new file mode 100644 index 000000000..fda370433 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux21.png differ diff --git a/zh_tw/Days/Images/Day15_Linux22.png b/zh_tw/Days/Images/Day15_Linux22.png new file mode 100644 index 000000000..d2e0bd3c6 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux22.png differ diff --git a/zh_tw/Days/Images/Day15_Linux23.png b/zh_tw/Days/Images/Day15_Linux23.png new file mode 100644 index 000000000..2e6633fd7 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux23.png differ diff --git a/zh_tw/Days/Images/Day15_Linux24.png b/zh_tw/Days/Images/Day15_Linux24.png new file mode 100644 index 000000000..c8d7c455a Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux24.png differ diff --git a/zh_tw/Days/Images/Day15_Linux25.png b/zh_tw/Days/Images/Day15_Linux25.png new file mode 100644 index 000000000..f8e912227 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux25.png differ diff --git a/zh_tw/Days/Images/Day15_Linux26.png b/zh_tw/Days/Images/Day15_Linux26.png new file mode 100644 index 000000000..8f0c0fba4 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux26.png differ diff --git a/zh_tw/Days/Images/Day15_Linux27.png b/zh_tw/Days/Images/Day15_Linux27.png new file mode 100644 index 000000000..e05da71e2 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux27.png differ diff --git a/zh_tw/Days/Images/Day15_Linux28.png b/zh_tw/Days/Images/Day15_Linux28.png new file mode 100644 index 000000000..b820ffc0d Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux28.png differ diff --git a/zh_tw/Days/Images/Day15_Linux29.png b/zh_tw/Days/Images/Day15_Linux29.png new file mode 100644 index 000000000..e20f8a9f2 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux29.png differ diff --git a/zh_tw/Days/Images/Day15_Linux3.png b/zh_tw/Days/Images/Day15_Linux3.png new file mode 100644 index 000000000..8faf15386 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux3.png differ diff --git a/zh_tw/Days/Images/Day15_Linux30.png b/zh_tw/Days/Images/Day15_Linux30.png new file mode 100644 index 000000000..b075d7b14 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux30.png differ diff --git a/zh_tw/Days/Images/Day15_Linux31.png b/zh_tw/Days/Images/Day15_Linux31.png new file mode 100644 index 000000000..deb710fe3 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux31.png differ diff --git a/zh_tw/Days/Images/Day15_Linux4.png b/zh_tw/Days/Images/Day15_Linux4.png new file mode 100644 index 000000000..d27227906 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux4.png differ diff --git a/zh_tw/Days/Images/Day15_Linux5.png b/zh_tw/Days/Images/Day15_Linux5.png new file mode 100644 index 000000000..ca68e67c1 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux5.png differ diff --git a/zh_tw/Days/Images/Day15_Linux6.png b/zh_tw/Days/Images/Day15_Linux6.png new file mode 100644 index 000000000..69480005a Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux6.png differ diff --git a/zh_tw/Days/Images/Day15_Linux7.png b/zh_tw/Days/Images/Day15_Linux7.png new file mode 100644 index 000000000..160baa032 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux7.png differ diff --git a/zh_tw/Days/Images/Day15_Linux8.png b/zh_tw/Days/Images/Day15_Linux8.png new file mode 100644 index 000000000..b1b529ccd Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux8.png differ diff --git a/zh_tw/Days/Images/Day15_Linux9.png b/zh_tw/Days/Images/Day15_Linux9.png new file mode 100644 index 000000000..c527dcd51 Binary files /dev/null and b/zh_tw/Days/Images/Day15_Linux9.png differ diff --git a/zh_tw/Days/Images/Day16_Linux1.png b/zh_tw/Days/Images/Day16_Linux1.png new file mode 100644 index 000000000..902592487 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux1.png differ diff --git a/zh_tw/Days/Images/Day16_Linux10.png b/zh_tw/Days/Images/Day16_Linux10.png new file mode 100644 index 000000000..9e9b5c5d5 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux10.png differ diff --git a/zh_tw/Days/Images/Day16_Linux11.png b/zh_tw/Days/Images/Day16_Linux11.png new file mode 100644 index 000000000..1006c549a Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux11.png differ diff --git a/zh_tw/Days/Images/Day16_Linux12.png b/zh_tw/Days/Images/Day16_Linux12.png new file mode 100644 index 000000000..e3ab4166d Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux12.png differ diff --git a/zh_tw/Days/Images/Day16_Linux13.png b/zh_tw/Days/Images/Day16_Linux13.png new file mode 100644 index 000000000..2f78851e6 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux13.png differ diff --git a/zh_tw/Days/Images/Day16_Linux14.png b/zh_tw/Days/Images/Day16_Linux14.png new file mode 100644 index 000000000..00298873e Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux14.png differ diff --git a/zh_tw/Days/Images/Day16_Linux15.png b/zh_tw/Days/Images/Day16_Linux15.png new file mode 100644 index 000000000..f2f986d8b Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux15.png differ diff --git a/zh_tw/Days/Images/Day16_Linux16.png b/zh_tw/Days/Images/Day16_Linux16.png new file mode 100644 index 000000000..cdb603dec Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux16.png differ diff --git a/zh_tw/Days/Images/Day16_Linux17.png b/zh_tw/Days/Images/Day16_Linux17.png new file mode 100644 index 000000000..119c3b341 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux17.png differ diff --git a/zh_tw/Days/Images/Day16_Linux18.png b/zh_tw/Days/Images/Day16_Linux18.png new file mode 100644 index 000000000..ca5f2c882 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux18.png differ diff --git a/zh_tw/Days/Images/Day16_Linux19.png b/zh_tw/Days/Images/Day16_Linux19.png new file mode 100644 index 000000000..d09e40393 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux19.png differ diff --git a/zh_tw/Days/Images/Day16_Linux2.png b/zh_tw/Days/Images/Day16_Linux2.png new file mode 100644 index 000000000..1debfc313 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux2.png differ diff --git a/zh_tw/Days/Images/Day16_Linux20.png b/zh_tw/Days/Images/Day16_Linux20.png new file mode 100644 index 000000000..d42530674 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux20.png differ diff --git a/zh_tw/Days/Images/Day16_Linux21.png b/zh_tw/Days/Images/Day16_Linux21.png new file mode 100644 index 000000000..f3d96ed14 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux21.png differ diff --git a/zh_tw/Days/Images/Day16_Linux22.png b/zh_tw/Days/Images/Day16_Linux22.png new file mode 100644 index 000000000..40566f6e4 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux22.png differ diff --git a/zh_tw/Days/Images/Day16_Linux23.png b/zh_tw/Days/Images/Day16_Linux23.png new file mode 100644 index 000000000..8eecae997 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux23.png differ diff --git a/zh_tw/Days/Images/Day16_Linux24.png b/zh_tw/Days/Images/Day16_Linux24.png new file mode 100644 index 000000000..a5b0e1aa2 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux24.png differ diff --git a/zh_tw/Days/Images/Day16_Linux25.png b/zh_tw/Days/Images/Day16_Linux25.png new file mode 100644 index 000000000..e749a04d3 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux25.png differ diff --git a/zh_tw/Days/Images/Day16_Linux26.png b/zh_tw/Days/Images/Day16_Linux26.png new file mode 100644 index 000000000..115f0bdfa Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux26.png differ diff --git a/zh_tw/Days/Images/Day16_Linux3.png b/zh_tw/Days/Images/Day16_Linux3.png new file mode 100644 index 000000000..1823dc5ea Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux3.png differ diff --git a/zh_tw/Days/Images/Day16_Linux4.png b/zh_tw/Days/Images/Day16_Linux4.png new file mode 100644 index 000000000..409176a5c Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux4.png differ diff --git a/zh_tw/Days/Images/Day16_Linux5.png b/zh_tw/Days/Images/Day16_Linux5.png new file mode 100644 index 000000000..af2ea620b Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux5.png differ diff --git a/zh_tw/Days/Images/Day16_Linux6.png b/zh_tw/Days/Images/Day16_Linux6.png new file mode 100644 index 000000000..c63b6b187 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux6.png differ diff --git a/zh_tw/Days/Images/Day16_Linux7.png b/zh_tw/Days/Images/Day16_Linux7.png new file mode 100644 index 000000000..b9f5bf784 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux7.png differ diff --git a/zh_tw/Days/Images/Day16_Linux8.png b/zh_tw/Days/Images/Day16_Linux8.png new file mode 100644 index 000000000..e7365828e Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux8.png differ diff --git a/zh_tw/Days/Images/Day16_Linux9.png b/zh_tw/Days/Images/Day16_Linux9.png new file mode 100644 index 000000000..feac2dd46 Binary files /dev/null and b/zh_tw/Days/Images/Day16_Linux9.png differ diff --git a/zh_tw/Days/Images/Day17_Linux1.png b/zh_tw/Days/Images/Day17_Linux1.png new file mode 100644 index 000000000..dfd369e11 Binary files /dev/null and b/zh_tw/Days/Images/Day17_Linux1.png differ diff --git a/zh_tw/Days/Images/Day17_Linux2.png b/zh_tw/Days/Images/Day17_Linux2.png new file mode 100644 index 000000000..6bcfb87f8 Binary files /dev/null and b/zh_tw/Days/Images/Day17_Linux2.png differ diff --git a/zh_tw/Days/Images/Day17_Linux3.png b/zh_tw/Days/Images/Day17_Linux3.png new file mode 100644 index 000000000..4c88801f1 Binary files /dev/null and b/zh_tw/Days/Images/Day17_Linux3.png differ diff --git a/zh_tw/Days/Images/Day17_Linux4.png b/zh_tw/Days/Images/Day17_Linux4.png new file mode 100644 index 000000000..11e77ba29 Binary files /dev/null and b/zh_tw/Days/Images/Day17_Linux4.png differ diff --git a/zh_tw/Days/Images/Day17_Linux5.png b/zh_tw/Days/Images/Day17_Linux5.png new file mode 100644 index 000000000..93253dc6b Binary files /dev/null and b/zh_tw/Days/Images/Day17_Linux5.png differ diff --git a/zh_tw/Days/Images/Day17_Linux6.png b/zh_tw/Days/Images/Day17_Linux6.png new file mode 100644 index 000000000..155cc144c Binary files /dev/null and b/zh_tw/Days/Images/Day17_Linux6.png differ diff --git a/zh_tw/Days/Images/Day17_Linux7.png b/zh_tw/Days/Images/Day17_Linux7.png new file mode 100644 index 000000000..dc9dcac27 Binary files /dev/null and b/zh_tw/Days/Images/Day17_Linux7.png differ diff --git a/zh_tw/Days/Images/Day17_Linux8.png b/zh_tw/Days/Images/Day17_Linux8.png new file mode 100644 index 000000000..41472cfa3 Binary files /dev/null and b/zh_tw/Days/Images/Day17_Linux8.png differ diff --git a/zh_tw/Days/Images/Day18_Linux1.png b/zh_tw/Days/Images/Day18_Linux1.png new file mode 100644 index 000000000..5c53c3cae Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux1.png differ diff --git a/zh_tw/Days/Images/Day18_Linux10.png b/zh_tw/Days/Images/Day18_Linux10.png new file mode 100644 index 000000000..1eeba6f3e Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux10.png differ diff --git a/zh_tw/Days/Images/Day18_Linux11.png b/zh_tw/Days/Images/Day18_Linux11.png new file mode 100644 index 000000000..f741f69a7 Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux11.png differ diff --git a/zh_tw/Days/Images/Day18_Linux12.png b/zh_tw/Days/Images/Day18_Linux12.png new file mode 100644 index 000000000..7edf5bb7f Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux12.png differ diff --git a/zh_tw/Days/Images/Day18_Linux2.png b/zh_tw/Days/Images/Day18_Linux2.png new file mode 100644 index 000000000..758076842 Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux2.png differ diff --git a/zh_tw/Days/Images/Day18_Linux3.png b/zh_tw/Days/Images/Day18_Linux3.png new file mode 100644 index 000000000..71713967d Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux3.png differ diff --git a/zh_tw/Days/Images/Day18_Linux4.png b/zh_tw/Days/Images/Day18_Linux4.png new file mode 100644 index 000000000..fe09ea7ca Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux4.png differ diff --git a/zh_tw/Days/Images/Day18_Linux5.png b/zh_tw/Days/Images/Day18_Linux5.png new file mode 100644 index 000000000..b66c16fb0 Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux5.png differ diff --git a/zh_tw/Days/Images/Day18_Linux6.png b/zh_tw/Days/Images/Day18_Linux6.png new file mode 100644 index 000000000..a6c5fe7d2 Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux6.png differ diff --git a/zh_tw/Days/Images/Day18_Linux7.png b/zh_tw/Days/Images/Day18_Linux7.png new file mode 100644 index 000000000..63ec9c1cb Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux7.png differ diff --git a/zh_tw/Days/Images/Day18_Linux8.png b/zh_tw/Days/Images/Day18_Linux8.png new file mode 100644 index 000000000..8ed8ecd9a Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux8.png differ diff --git a/zh_tw/Days/Images/Day18_Linux9.png b/zh_tw/Days/Images/Day18_Linux9.png new file mode 100644 index 000000000..5131c2421 Binary files /dev/null and b/zh_tw/Days/Images/Day18_Linux9.png differ diff --git a/zh_tw/Days/Images/Day19_Linux1.png b/zh_tw/Days/Images/Day19_Linux1.png new file mode 100644 index 000000000..d3438a6d0 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux1.png differ diff --git a/zh_tw/Days/Images/Day19_Linux10.png b/zh_tw/Days/Images/Day19_Linux10.png new file mode 100644 index 000000000..c92970f2b Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux10.png differ diff --git a/zh_tw/Days/Images/Day19_Linux11.png b/zh_tw/Days/Images/Day19_Linux11.png new file mode 100644 index 000000000..3b5f3fbb0 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux11.png differ diff --git a/zh_tw/Days/Images/Day19_Linux12.png b/zh_tw/Days/Images/Day19_Linux12.png new file mode 100644 index 000000000..2c14cf778 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux12.png differ diff --git a/zh_tw/Days/Images/Day19_Linux13.png b/zh_tw/Days/Images/Day19_Linux13.png new file mode 100644 index 000000000..5a97d7431 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux13.png differ diff --git a/zh_tw/Days/Images/Day19_Linux14.png b/zh_tw/Days/Images/Day19_Linux14.png new file mode 100644 index 000000000..43e9a5fdc Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux14.png differ diff --git a/zh_tw/Days/Images/Day19_Linux15.png b/zh_tw/Days/Images/Day19_Linux15.png new file mode 100644 index 000000000..4b50a44ac Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux15.png differ diff --git a/zh_tw/Days/Images/Day19_Linux16.png b/zh_tw/Days/Images/Day19_Linux16.png new file mode 100644 index 000000000..74a7cd7fc Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux16.png differ diff --git a/zh_tw/Days/Images/Day19_Linux2.png b/zh_tw/Days/Images/Day19_Linux2.png new file mode 100644 index 000000000..cb60be0bb Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux2.png differ diff --git a/zh_tw/Days/Images/Day19_Linux3.png b/zh_tw/Days/Images/Day19_Linux3.png new file mode 100644 index 000000000..8dae0b3e4 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux3.png differ diff --git a/zh_tw/Days/Images/Day19_Linux4.png b/zh_tw/Days/Images/Day19_Linux4.png new file mode 100644 index 000000000..04c105075 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux4.png differ diff --git a/zh_tw/Days/Images/Day19_Linux5.png b/zh_tw/Days/Images/Day19_Linux5.png new file mode 100644 index 000000000..d88d511ab Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux5.png differ diff --git a/zh_tw/Days/Images/Day19_Linux6.png b/zh_tw/Days/Images/Day19_Linux6.png new file mode 100644 index 000000000..784ba2f88 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux6.png differ diff --git a/zh_tw/Days/Images/Day19_Linux7.png b/zh_tw/Days/Images/Day19_Linux7.png new file mode 100644 index 000000000..8a5e1fe92 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux7.png differ diff --git a/zh_tw/Days/Images/Day19_Linux8.png b/zh_tw/Days/Images/Day19_Linux8.png new file mode 100644 index 000000000..331f59039 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux8.png differ diff --git a/zh_tw/Days/Images/Day19_Linux9.png b/zh_tw/Days/Images/Day19_Linux9.png new file mode 100644 index 000000000..70a81e015 Binary files /dev/null and b/zh_tw/Days/Images/Day19_Linux9.png differ diff --git a/zh_tw/Days/Images/Day20_Linux1.png b/zh_tw/Days/Images/Day20_Linux1.png new file mode 100644 index 000000000..1137568b9 Binary files /dev/null and b/zh_tw/Days/Images/Day20_Linux1.png differ diff --git a/zh_tw/Days/Images/Day20_Linux2.png b/zh_tw/Days/Images/Day20_Linux2.png new file mode 100644 index 000000000..231efdaa3 Binary files /dev/null and b/zh_tw/Days/Images/Day20_Linux2.png differ diff --git a/zh_tw/Days/Images/Day20_Linux3.png b/zh_tw/Days/Images/Day20_Linux3.png new file mode 100644 index 000000000..38d34fb21 Binary files /dev/null and b/zh_tw/Days/Images/Day20_Linux3.png differ diff --git a/zh_tw/Days/Images/Day20_Linux4.png b/zh_tw/Days/Images/Day20_Linux4.png new file mode 100644 index 000000000..f32457127 Binary files /dev/null and b/zh_tw/Days/Images/Day20_Linux4.png differ diff --git a/zh_tw/Days/Images/Day20_Linux5.png b/zh_tw/Days/Images/Day20_Linux5.png new file mode 100644 index 000000000..132c6410e Binary files /dev/null and b/zh_tw/Days/Images/Day20_Linux5.png differ diff --git a/zh_tw/Days/Images/Day20_Linux6.png b/zh_tw/Days/Images/Day20_Linux6.png new file mode 100644 index 000000000..e05fc0031 Binary files /dev/null and b/zh_tw/Days/Images/Day20_Linux6.png differ diff --git a/zh_tw/Days/Images/Day20_Linux7.png b/zh_tw/Days/Images/Day20_Linux7.png new file mode 100644 index 000000000..5909db4f3 Binary files /dev/null and b/zh_tw/Days/Images/Day20_Linux7.png differ diff --git a/zh_tw/Days/Images/Day20_Linux8.png b/zh_tw/Days/Images/Day20_Linux8.png new file mode 100644 index 000000000..341a1537f Binary files /dev/null and b/zh_tw/Days/Images/Day20_Linux8.png differ diff --git a/zh_tw/Days/Images/Day20_YouTube.png b/zh_tw/Days/Images/Day20_YouTube.png new file mode 100644 index 000000000..cbc4112b4 Binary files /dev/null and b/zh_tw/Days/Images/Day20_YouTube.png differ diff --git a/zh_tw/Days/Images/Day21_Networking1.png b/zh_tw/Days/Images/Day21_Networking1.png new file mode 100644 index 000000000..b97ceb28f Binary files /dev/null and b/zh_tw/Days/Images/Day21_Networking1.png differ diff --git a/zh_tw/Days/Images/Day21_Networking2.png b/zh_tw/Days/Images/Day21_Networking2.png new file mode 100644 index 000000000..2ef7f0df8 Binary files /dev/null and b/zh_tw/Days/Images/Day21_Networking2.png differ diff --git a/zh_tw/Days/Images/Day21_Networking3.png b/zh_tw/Days/Images/Day21_Networking3.png new file mode 100644 index 000000000..89062d057 Binary files /dev/null and b/zh_tw/Days/Images/Day21_Networking3.png differ diff --git a/zh_tw/Days/Images/Day21_Networking4.png b/zh_tw/Days/Images/Day21_Networking4.png new file mode 100644 index 000000000..09e70c715 Binary files /dev/null and b/zh_tw/Days/Images/Day21_Networking4.png differ diff --git a/zh_tw/Days/Images/Day21_Networking5.png b/zh_tw/Days/Images/Day21_Networking5.png new file mode 100644 index 000000000..59643c139 Binary files /dev/null and b/zh_tw/Days/Images/Day21_Networking5.png differ diff --git a/zh_tw/Days/Images/Day22_Networking1.png b/zh_tw/Days/Images/Day22_Networking1.png new file mode 100644 index 000000000..e02dd6918 Binary files /dev/null and b/zh_tw/Days/Images/Day22_Networking1.png differ diff --git a/zh_tw/Days/Images/Day22_Networking2.png b/zh_tw/Days/Images/Day22_Networking2.png new file mode 100644 index 000000000..f35be2dbb Binary files /dev/null and b/zh_tw/Days/Images/Day22_Networking2.png differ diff --git a/zh_tw/Days/Images/Day22_Networking3.png b/zh_tw/Days/Images/Day22_Networking3.png new file mode 100644 index 000000000..bbf2b0e4c Binary files /dev/null and b/zh_tw/Days/Images/Day22_Networking3.png differ diff --git a/zh_tw/Days/Images/Day22_Networking4.png b/zh_tw/Days/Images/Day22_Networking4.png new file mode 100644 index 000000000..239757c35 Binary files /dev/null and b/zh_tw/Days/Images/Day22_Networking4.png differ diff --git a/zh_tw/Days/Images/Day22_Networking5.png b/zh_tw/Days/Images/Day22_Networking5.png new file mode 100644 index 000000000..22a8a37ce Binary files /dev/null and b/zh_tw/Days/Images/Day22_Networking5.png differ diff --git a/zh_tw/Days/Images/Day22_Networking6.png b/zh_tw/Days/Images/Day22_Networking6.png new file mode 100644 index 000000000..b0c21e196 Binary files /dev/null and b/zh_tw/Days/Images/Day22_Networking6.png differ diff --git a/zh_tw/Days/Images/Day22_Networking7.png b/zh_tw/Days/Images/Day22_Networking7.png new file mode 100644 index 000000000..0bf951019 Binary files /dev/null and b/zh_tw/Days/Images/Day22_Networking7.png differ diff --git a/zh_tw/Days/Images/Day22_Networking8.png b/zh_tw/Days/Images/Day22_Networking8.png new file mode 100644 index 000000000..efb81adcf Binary files /dev/null and b/zh_tw/Days/Images/Day22_Networking8.png differ diff --git a/zh_tw/Days/Images/Day23_Networking1.png b/zh_tw/Days/Images/Day23_Networking1.png new file mode 100644 index 000000000..f631c6f07 Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking1.png differ diff --git a/zh_tw/Days/Images/Day23_Networking2.png b/zh_tw/Days/Images/Day23_Networking2.png new file mode 100644 index 000000000..b3169585a Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking2.png differ diff --git a/zh_tw/Days/Images/Day23_Networking3.png b/zh_tw/Days/Images/Day23_Networking3.png new file mode 100644 index 000000000..37899674b Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking3.png differ diff --git a/zh_tw/Days/Images/Day23_Networking4.png b/zh_tw/Days/Images/Day23_Networking4.png new file mode 100644 index 000000000..f2398f5f7 Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking4.png differ diff --git a/zh_tw/Days/Images/Day23_Networking5.png b/zh_tw/Days/Images/Day23_Networking5.png new file mode 100644 index 000000000..a99798dc3 Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking5.png differ diff --git a/zh_tw/Days/Images/Day23_Networking6.png b/zh_tw/Days/Images/Day23_Networking6.png new file mode 100644 index 000000000..1805e3c94 Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking6.png differ diff --git a/zh_tw/Days/Images/Day23_Networking7.png b/zh_tw/Days/Images/Day23_Networking7.png new file mode 100644 index 000000000..6487f6dbc Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking7.png differ diff --git a/zh_tw/Days/Images/Day23_Networking8.png b/zh_tw/Days/Images/Day23_Networking8.png new file mode 100644 index 000000000..63524441f Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking8.png differ diff --git a/zh_tw/Days/Images/Day23_Networking9.png b/zh_tw/Days/Images/Day23_Networking9.png new file mode 100644 index 000000000..51ea55725 Binary files /dev/null and b/zh_tw/Days/Images/Day23_Networking9.png differ diff --git a/zh_tw/Days/Images/Day25_Networking1.png b/zh_tw/Days/Images/Day25_Networking1.png new file mode 100644 index 000000000..623dddfa3 Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking1.png differ diff --git a/zh_tw/Days/Images/Day25_Networking10.png b/zh_tw/Days/Images/Day25_Networking10.png new file mode 100644 index 000000000..d5a44813b Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking10.png differ diff --git a/zh_tw/Days/Images/Day25_Networking11.png b/zh_tw/Days/Images/Day25_Networking11.png new file mode 100644 index 000000000..2b2c1eec1 Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking11.png differ diff --git a/zh_tw/Days/Images/Day25_Networking12.png b/zh_tw/Days/Images/Day25_Networking12.png new file mode 100644 index 000000000..ad4d0ef0a Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking12.png differ diff --git a/zh_tw/Days/Images/Day25_Networking2.png b/zh_tw/Days/Images/Day25_Networking2.png new file mode 100644 index 000000000..61d7921e2 Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking2.png differ diff --git a/zh_tw/Days/Images/Day25_Networking3.png b/zh_tw/Days/Images/Day25_Networking3.png new file mode 100644 index 000000000..6ec2cf857 Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking3.png differ diff --git a/zh_tw/Days/Images/Day25_Networking4.png b/zh_tw/Days/Images/Day25_Networking4.png new file mode 100644 index 000000000..ab32b5b6a Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking4.png differ diff --git a/zh_tw/Days/Images/Day25_Networking5.png b/zh_tw/Days/Images/Day25_Networking5.png new file mode 100644 index 000000000..5663e4159 Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking5.png differ diff --git a/zh_tw/Days/Images/Day25_Networking6.png b/zh_tw/Days/Images/Day25_Networking6.png new file mode 100644 index 000000000..590bbb2a1 Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking6.png differ diff --git a/zh_tw/Days/Images/Day25_Networking7.png b/zh_tw/Days/Images/Day25_Networking7.png new file mode 100644 index 000000000..c66f1bc0d Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking7.png differ diff --git a/zh_tw/Days/Images/Day25_Networking8.png b/zh_tw/Days/Images/Day25_Networking8.png new file mode 100644 index 000000000..0829ccecf Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking8.png differ diff --git a/zh_tw/Days/Images/Day25_Networking9.png b/zh_tw/Days/Images/Day25_Networking9.png new file mode 100644 index 000000000..650cfcbcd Binary files /dev/null and b/zh_tw/Days/Images/Day25_Networking9.png differ diff --git a/zh_tw/Days/Images/Day26_Networking1.png b/zh_tw/Days/Images/Day26_Networking1.png new file mode 100644 index 000000000..9ad8d5d03 Binary files /dev/null and b/zh_tw/Days/Images/Day26_Networking1.png differ diff --git a/zh_tw/Days/Images/Day26_Networking2.png b/zh_tw/Days/Images/Day26_Networking2.png new file mode 100644 index 000000000..990448a9b Binary files /dev/null and b/zh_tw/Days/Images/Day26_Networking2.png differ diff --git a/zh_tw/Days/Images/Day26_Networking3.png b/zh_tw/Days/Images/Day26_Networking3.png new file mode 100644 index 000000000..ad84dc33c Binary files /dev/null and b/zh_tw/Days/Images/Day26_Networking3.png differ diff --git a/zh_tw/Days/Images/Day26_Networking4.png b/zh_tw/Days/Images/Day26_Networking4.png new file mode 100644 index 000000000..48aed1bd3 Binary files /dev/null and b/zh_tw/Days/Images/Day26_Networking4.png differ diff --git a/zh_tw/Days/Images/Day26_Networking5.png b/zh_tw/Days/Images/Day26_Networking5.png new file mode 100644 index 000000000..1bfa17db6 Binary files /dev/null and b/zh_tw/Days/Images/Day26_Networking5.png differ diff --git a/zh_tw/Days/Images/Day26_Networking6.png b/zh_tw/Days/Images/Day26_Networking6.png new file mode 100644 index 000000000..785c19fc1 Binary files /dev/null and b/zh_tw/Days/Images/Day26_Networking6.png differ diff --git a/zh_tw/Days/Images/Day26_Networking7.png b/zh_tw/Days/Images/Day26_Networking7.png new file mode 100644 index 000000000..117582a71 Binary files /dev/null and b/zh_tw/Days/Images/Day26_Networking7.png differ diff --git a/zh_tw/Days/Images/Day26_Networking8.png b/zh_tw/Days/Images/Day26_Networking8.png new file mode 100644 index 000000000..73209dec4 Binary files /dev/null and b/zh_tw/Days/Images/Day26_Networking8.png differ diff --git a/zh_tw/Days/Images/Day27_Networking1.png b/zh_tw/Days/Images/Day27_Networking1.png new file mode 100644 index 000000000..dc69ce906 Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking1.png differ diff --git a/zh_tw/Days/Images/Day27_Networking10.png b/zh_tw/Days/Images/Day27_Networking10.png new file mode 100644 index 000000000..a47e8066b Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking10.png differ diff --git a/zh_tw/Days/Images/Day27_Networking2.png b/zh_tw/Days/Images/Day27_Networking2.png new file mode 100644 index 000000000..10c280251 Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking2.png differ diff --git a/zh_tw/Days/Images/Day27_Networking3.png b/zh_tw/Days/Images/Day27_Networking3.png new file mode 100644 index 000000000..12e4504b1 Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking3.png differ diff --git a/zh_tw/Days/Images/Day27_Networking4.png b/zh_tw/Days/Images/Day27_Networking4.png new file mode 100644 index 000000000..1c6e5109e Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking4.png differ diff --git a/zh_tw/Days/Images/Day27_Networking5.png b/zh_tw/Days/Images/Day27_Networking5.png new file mode 100644 index 000000000..d97058626 Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking5.png differ diff --git a/zh_tw/Days/Images/Day27_Networking6.png b/zh_tw/Days/Images/Day27_Networking6.png new file mode 100644 index 000000000..781a24279 Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking6.png differ diff --git a/zh_tw/Days/Images/Day27_Networking7.png b/zh_tw/Days/Images/Day27_Networking7.png new file mode 100644 index 000000000..80b0a72e6 Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking7.png differ diff --git a/zh_tw/Days/Images/Day27_Networking8.png b/zh_tw/Days/Images/Day27_Networking8.png new file mode 100644 index 000000000..bc655c334 Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking8.png differ diff --git a/zh_tw/Days/Images/Day27_Networking9.png b/zh_tw/Days/Images/Day27_Networking9.png new file mode 100644 index 000000000..3a6be76b1 Binary files /dev/null and b/zh_tw/Days/Images/Day27_Networking9.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud1.png b/zh_tw/Days/Images/Day28_Cloud1.png new file mode 100644 index 000000000..9e72b3743 Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud1.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud10.png b/zh_tw/Days/Images/Day28_Cloud10.png new file mode 100644 index 000000000..9d480d81c Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud10.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud2.png b/zh_tw/Days/Images/Day28_Cloud2.png new file mode 100644 index 000000000..77cd9075d Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud2.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud3.png b/zh_tw/Days/Images/Day28_Cloud3.png new file mode 100644 index 000000000..0192c1387 Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud3.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud4.png b/zh_tw/Days/Images/Day28_Cloud4.png new file mode 100644 index 000000000..0d25ee8ac Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud4.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud5.png b/zh_tw/Days/Images/Day28_Cloud5.png new file mode 100644 index 000000000..a2f0499cd Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud5.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud6.png b/zh_tw/Days/Images/Day28_Cloud6.png new file mode 100644 index 000000000..d58dca653 Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud6.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud7.png b/zh_tw/Days/Images/Day28_Cloud7.png new file mode 100644 index 000000000..6f075a08a Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud7.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud8.png b/zh_tw/Days/Images/Day28_Cloud8.png new file mode 100644 index 000000000..cb7ebf3af Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud8.png differ diff --git a/zh_tw/Days/Images/Day28_Cloud9.png b/zh_tw/Days/Images/Day28_Cloud9.png new file mode 100644 index 000000000..dd513ded4 Binary files /dev/null and b/zh_tw/Days/Images/Day28_Cloud9.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud1.png b/zh_tw/Days/Images/Day29_Cloud1.png new file mode 100644 index 000000000..e7888ffbe Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud1.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud10.png b/zh_tw/Days/Images/Day29_Cloud10.png new file mode 100644 index 000000000..940637c7e Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud10.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud11.png b/zh_tw/Days/Images/Day29_Cloud11.png new file mode 100644 index 000000000..6b2269eda Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud11.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud2.png b/zh_tw/Days/Images/Day29_Cloud2.png new file mode 100644 index 000000000..0b7365461 Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud2.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud3.png b/zh_tw/Days/Images/Day29_Cloud3.png new file mode 100644 index 000000000..4ecc297e2 Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud3.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud4.png b/zh_tw/Days/Images/Day29_Cloud4.png new file mode 100644 index 000000000..1e6c3e178 Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud4.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud5.png b/zh_tw/Days/Images/Day29_Cloud5.png new file mode 100644 index 000000000..9b7f810de Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud5.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud6.png b/zh_tw/Days/Images/Day29_Cloud6.png new file mode 100644 index 000000000..9990e5cbe Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud6.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud7.png b/zh_tw/Days/Images/Day29_Cloud7.png new file mode 100644 index 000000000..a30eb53b7 Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud7.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud8.png b/zh_tw/Days/Images/Day29_Cloud8.png new file mode 100644 index 000000000..fb6dd8958 Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud8.png differ diff --git a/zh_tw/Days/Images/Day29_Cloud9.png b/zh_tw/Days/Images/Day29_Cloud9.png new file mode 100644 index 000000000..1cf3aea61 Binary files /dev/null and b/zh_tw/Days/Images/Day29_Cloud9.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud1.png b/zh_tw/Days/Images/Day30_Cloud1.png new file mode 100644 index 000000000..7ef964820 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud1.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud10.png b/zh_tw/Days/Images/Day30_Cloud10.png new file mode 100644 index 000000000..e731e7bb4 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud10.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud11.png b/zh_tw/Days/Images/Day30_Cloud11.png new file mode 100644 index 000000000..c298ac3bc Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud11.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud12.png b/zh_tw/Days/Images/Day30_Cloud12.png new file mode 100644 index 000000000..04866838e Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud12.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud13.png b/zh_tw/Days/Images/Day30_Cloud13.png new file mode 100644 index 000000000..2152b0ae1 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud13.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud14.png b/zh_tw/Days/Images/Day30_Cloud14.png new file mode 100644 index 000000000..fb2ad616f Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud14.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud15.png b/zh_tw/Days/Images/Day30_Cloud15.png new file mode 100644 index 000000000..dac8f859a Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud15.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud16.png b/zh_tw/Days/Images/Day30_Cloud16.png new file mode 100644 index 000000000..ed03a01f6 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud16.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud17.png b/zh_tw/Days/Images/Day30_Cloud17.png new file mode 100644 index 000000000..d6fd1ab55 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud17.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud2.png b/zh_tw/Days/Images/Day30_Cloud2.png new file mode 100644 index 000000000..1274f6549 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud2.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud3.png b/zh_tw/Days/Images/Day30_Cloud3.png new file mode 100644 index 000000000..5c8b047b3 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud3.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud4.png b/zh_tw/Days/Images/Day30_Cloud4.png new file mode 100644 index 000000000..8334340c9 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud4.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud5.png b/zh_tw/Days/Images/Day30_Cloud5.png new file mode 100644 index 000000000..8ea976b7b Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud5.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud6.png b/zh_tw/Days/Images/Day30_Cloud6.png new file mode 100644 index 000000000..b84d492d1 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud6.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud7.png b/zh_tw/Days/Images/Day30_Cloud7.png new file mode 100644 index 000000000..e93176dd8 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud7.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud8.png b/zh_tw/Days/Images/Day30_Cloud8.png new file mode 100644 index 000000000..21e8660d6 Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud8.png differ diff --git a/zh_tw/Days/Images/Day30_Cloud9.png b/zh_tw/Days/Images/Day30_Cloud9.png new file mode 100644 index 000000000..47da47f1a Binary files /dev/null and b/zh_tw/Days/Images/Day30_Cloud9.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud1.png b/zh_tw/Days/Images/Day32_Cloud1.png new file mode 100644 index 000000000..358cf606a Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud1.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud10.png b/zh_tw/Days/Images/Day32_Cloud10.png new file mode 100644 index 000000000..cb4f7e080 Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud10.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud2.png b/zh_tw/Days/Images/Day32_Cloud2.png new file mode 100644 index 000000000..40a2deb5a Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud2.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud3.png b/zh_tw/Days/Images/Day32_Cloud3.png new file mode 100644 index 000000000..8544d426e Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud3.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud4.png b/zh_tw/Days/Images/Day32_Cloud4.png new file mode 100644 index 000000000..00df52c1e Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud4.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud5.png b/zh_tw/Days/Images/Day32_Cloud5.png new file mode 100644 index 000000000..f0663e548 Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud5.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud6.png b/zh_tw/Days/Images/Day32_Cloud6.png new file mode 100644 index 000000000..c580273d9 Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud6.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud7.png b/zh_tw/Days/Images/Day32_Cloud7.png new file mode 100644 index 000000000..a01decd5b Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud7.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud8.png b/zh_tw/Days/Images/Day32_Cloud8.png new file mode 100644 index 000000000..868a14da4 Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud8.png differ diff --git a/zh_tw/Days/Images/Day32_Cloud9.png b/zh_tw/Days/Images/Day32_Cloud9.png new file mode 100644 index 000000000..1b8bea649 Binary files /dev/null and b/zh_tw/Days/Images/Day32_Cloud9.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud1.png b/zh_tw/Days/Images/Day33_Cloud1.png new file mode 100644 index 000000000..f246a95ef Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud1.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud10.png b/zh_tw/Days/Images/Day33_Cloud10.png new file mode 100644 index 000000000..7f466ed99 Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud10.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud2.png b/zh_tw/Days/Images/Day33_Cloud2.png new file mode 100644 index 000000000..561c44572 Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud2.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud3.png b/zh_tw/Days/Images/Day33_Cloud3.png new file mode 100644 index 000000000..570f9989f Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud3.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud4.png b/zh_tw/Days/Images/Day33_Cloud4.png new file mode 100644 index 000000000..079dae52e Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud4.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud5.png b/zh_tw/Days/Images/Day33_Cloud5.png new file mode 100644 index 000000000..84ff63cba Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud5.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud6.png b/zh_tw/Days/Images/Day33_Cloud6.png new file mode 100644 index 000000000..35d0e6c86 Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud6.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud7.png b/zh_tw/Days/Images/Day33_Cloud7.png new file mode 100644 index 000000000..c5fe6d20d Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud7.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud8.png b/zh_tw/Days/Images/Day33_Cloud8.png new file mode 100644 index 000000000..3d7a7188d Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud8.png differ diff --git a/zh_tw/Days/Images/Day33_Cloud9.png b/zh_tw/Days/Images/Day33_Cloud9.png new file mode 100644 index 000000000..628955392 Binary files /dev/null and b/zh_tw/Days/Images/Day33_Cloud9.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud1.png b/zh_tw/Days/Images/Day34_Cloud1.png new file mode 100644 index 000000000..44f5488d1 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud1.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud10.png b/zh_tw/Days/Images/Day34_Cloud10.png new file mode 100644 index 000000000..7dd979406 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud10.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud11.png b/zh_tw/Days/Images/Day34_Cloud11.png new file mode 100644 index 000000000..40ecccf0b Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud11.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud12.png b/zh_tw/Days/Images/Day34_Cloud12.png new file mode 100644 index 000000000..c8bf69795 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud12.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud13.png b/zh_tw/Days/Images/Day34_Cloud13.png new file mode 100644 index 000000000..38259bf37 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud13.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud14.png b/zh_tw/Days/Images/Day34_Cloud14.png new file mode 100644 index 000000000..0b89b4ed5 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud14.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud15.png b/zh_tw/Days/Images/Day34_Cloud15.png new file mode 100644 index 000000000..a2a4c6165 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud15.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud16.png b/zh_tw/Days/Images/Day34_Cloud16.png new file mode 100644 index 000000000..41c39b97f Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud16.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud17.png b/zh_tw/Days/Images/Day34_Cloud17.png new file mode 100644 index 000000000..9576665ab Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud17.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud18.png b/zh_tw/Days/Images/Day34_Cloud18.png new file mode 100644 index 000000000..0ee30dd5e Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud18.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud19.png b/zh_tw/Days/Images/Day34_Cloud19.png new file mode 100644 index 000000000..0a1f83f3f Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud19.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud2.png b/zh_tw/Days/Images/Day34_Cloud2.png new file mode 100644 index 000000000..4d72d5ebc Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud2.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud20.png b/zh_tw/Days/Images/Day34_Cloud20.png new file mode 100644 index 000000000..a8a388040 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud20.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud21.png b/zh_tw/Days/Images/Day34_Cloud21.png new file mode 100644 index 000000000..dbcd416d4 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud21.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud22.png b/zh_tw/Days/Images/Day34_Cloud22.png new file mode 100644 index 000000000..8dba20d3a Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud22.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud23.png b/zh_tw/Days/Images/Day34_Cloud23.png new file mode 100644 index 000000000..e94b5b903 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud23.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud24.png b/zh_tw/Days/Images/Day34_Cloud24.png new file mode 100644 index 000000000..8598856d1 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud24.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud25.png b/zh_tw/Days/Images/Day34_Cloud25.png new file mode 100644 index 000000000..0f05ef496 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud25.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud26.png b/zh_tw/Days/Images/Day34_Cloud26.png new file mode 100644 index 000000000..13c51a6c1 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud26.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud27.png b/zh_tw/Days/Images/Day34_Cloud27.png new file mode 100644 index 000000000..a0b4191b4 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud27.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud28.png b/zh_tw/Days/Images/Day34_Cloud28.png new file mode 100644 index 000000000..ce8757364 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud28.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud29.png b/zh_tw/Days/Images/Day34_Cloud29.png new file mode 100644 index 000000000..bf92aa25e Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud29.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud3.png b/zh_tw/Days/Images/Day34_Cloud3.png new file mode 100644 index 000000000..c62f1dfa4 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud3.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud30.png b/zh_tw/Days/Images/Day34_Cloud30.png new file mode 100644 index 000000000..fd8fd5453 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud30.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud31.png b/zh_tw/Days/Images/Day34_Cloud31.png new file mode 100644 index 000000000..125481612 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud31.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud32.png b/zh_tw/Days/Images/Day34_Cloud32.png new file mode 100644 index 000000000..5173df19e Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud32.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud33.png b/zh_tw/Days/Images/Day34_Cloud33.png new file mode 100644 index 000000000..80db7c7bc Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud33.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud34.png b/zh_tw/Days/Images/Day34_Cloud34.png new file mode 100644 index 000000000..61fdcc394 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud34.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud35.png b/zh_tw/Days/Images/Day34_Cloud35.png new file mode 100644 index 000000000..986fc2323 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud35.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud36.png b/zh_tw/Days/Images/Day34_Cloud36.png new file mode 100644 index 000000000..575fca13c Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud36.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud4.png b/zh_tw/Days/Images/Day34_Cloud4.png new file mode 100644 index 000000000..fbccbc50b Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud4.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud5.png b/zh_tw/Days/Images/Day34_Cloud5.png new file mode 100644 index 000000000..da4a3b2c4 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud5.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud6.png b/zh_tw/Days/Images/Day34_Cloud6.png new file mode 100644 index 000000000..fff595e5f Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud6.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud7.png b/zh_tw/Days/Images/Day34_Cloud7.png new file mode 100644 index 000000000..af4b72733 Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud7.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud8.png b/zh_tw/Days/Images/Day34_Cloud8.png new file mode 100644 index 000000000..83a41745f Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud8.png differ diff --git a/zh_tw/Days/Images/Day34_Cloud9.png b/zh_tw/Days/Images/Day34_Cloud9.png new file mode 100644 index 000000000..443cdff5f Binary files /dev/null and b/zh_tw/Days/Images/Day34_Cloud9.png differ diff --git a/zh_tw/Days/Images/Day35_Git1.png b/zh_tw/Days/Images/Day35_Git1.png new file mode 100644 index 000000000..2f072de52 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git1.png differ diff --git a/zh_tw/Days/Images/Day35_Git10.png b/zh_tw/Days/Images/Day35_Git10.png new file mode 100644 index 000000000..64d7cae90 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git10.png differ diff --git a/zh_tw/Days/Images/Day35_Git11.png b/zh_tw/Days/Images/Day35_Git11.png new file mode 100644 index 000000000..fadd55ed2 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git11.png differ diff --git a/zh_tw/Days/Images/Day35_Git12.png b/zh_tw/Days/Images/Day35_Git12.png new file mode 100644 index 000000000..368946969 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git12.png differ diff --git a/zh_tw/Days/Images/Day35_Git13.png b/zh_tw/Days/Images/Day35_Git13.png new file mode 100644 index 000000000..393df8c35 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git13.png differ diff --git a/zh_tw/Days/Images/Day35_Git14.png b/zh_tw/Days/Images/Day35_Git14.png new file mode 100644 index 000000000..36d817b8a Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git14.png differ diff --git a/zh_tw/Days/Images/Day35_Git15.png b/zh_tw/Days/Images/Day35_Git15.png new file mode 100644 index 000000000..d44475316 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git15.png differ diff --git a/zh_tw/Days/Images/Day35_Git16.png b/zh_tw/Days/Images/Day35_Git16.png new file mode 100644 index 000000000..82b8953ee Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git16.png differ diff --git a/zh_tw/Days/Images/Day35_Git17.png b/zh_tw/Days/Images/Day35_Git17.png new file mode 100644 index 000000000..1dd7014ac Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git17.png differ diff --git a/zh_tw/Days/Images/Day35_Git18.png b/zh_tw/Days/Images/Day35_Git18.png new file mode 100644 index 000000000..f9eac6f12 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git18.png differ diff --git a/zh_tw/Days/Images/Day35_Git2.png b/zh_tw/Days/Images/Day35_Git2.png new file mode 100644 index 000000000..95bbef2d4 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git2.png differ diff --git a/zh_tw/Days/Images/Day35_Git3.png b/zh_tw/Days/Images/Day35_Git3.png new file mode 100644 index 000000000..0023d2696 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git3.png differ diff --git a/zh_tw/Days/Images/Day35_Git4.png b/zh_tw/Days/Images/Day35_Git4.png new file mode 100644 index 000000000..e4b085f11 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git4.png differ diff --git a/zh_tw/Days/Images/Day35_Git5.png b/zh_tw/Days/Images/Day35_Git5.png new file mode 100644 index 000000000..9cd14c8c0 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git5.png differ diff --git a/zh_tw/Days/Images/Day35_Git6.png b/zh_tw/Days/Images/Day35_Git6.png new file mode 100644 index 000000000..8e11961be Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git6.png differ diff --git a/zh_tw/Days/Images/Day35_Git7.png b/zh_tw/Days/Images/Day35_Git7.png new file mode 100644 index 000000000..e271e13bb Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git7.png differ diff --git a/zh_tw/Days/Images/Day35_Git8.png b/zh_tw/Days/Images/Day35_Git8.png new file mode 100644 index 000000000..972f66fb2 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git8.png differ diff --git a/zh_tw/Days/Images/Day35_Git9.png b/zh_tw/Days/Images/Day35_Git9.png new file mode 100644 index 000000000..009f357a2 Binary files /dev/null and b/zh_tw/Days/Images/Day35_Git9.png differ diff --git a/zh_tw/Days/Images/Day36_Git1.png b/zh_tw/Days/Images/Day36_Git1.png new file mode 100644 index 000000000..ca4eecfd5 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git1.png differ diff --git a/zh_tw/Days/Images/Day36_Git10.png b/zh_tw/Days/Images/Day36_Git10.png new file mode 100644 index 000000000..23a4044ab Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git10.png differ diff --git a/zh_tw/Days/Images/Day36_Git11.png b/zh_tw/Days/Images/Day36_Git11.png new file mode 100644 index 000000000..4244a49bf Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git11.png differ diff --git a/zh_tw/Days/Images/Day36_Git12.png b/zh_tw/Days/Images/Day36_Git12.png new file mode 100644 index 000000000..ffdc0bf81 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git12.png differ diff --git a/zh_tw/Days/Images/Day36_Git13.png b/zh_tw/Days/Images/Day36_Git13.png new file mode 100644 index 000000000..27ac17e15 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git13.png differ diff --git a/zh_tw/Days/Images/Day36_Git14.png b/zh_tw/Days/Images/Day36_Git14.png new file mode 100644 index 000000000..27ac17e15 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git14.png differ diff --git a/zh_tw/Days/Images/Day36_Git15.png b/zh_tw/Days/Images/Day36_Git15.png new file mode 100644 index 000000000..a94ea7733 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git15.png differ diff --git a/zh_tw/Days/Images/Day36_Git16.png b/zh_tw/Days/Images/Day36_Git16.png new file mode 100644 index 000000000..eac6b2572 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git16.png differ diff --git a/zh_tw/Days/Images/Day36_Git2.png b/zh_tw/Days/Images/Day36_Git2.png new file mode 100644 index 000000000..88683db3e Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git2.png differ diff --git a/zh_tw/Days/Images/Day36_Git3.png b/zh_tw/Days/Images/Day36_Git3.png new file mode 100644 index 000000000..23952b26d Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git3.png differ diff --git a/zh_tw/Days/Images/Day36_Git4.png b/zh_tw/Days/Images/Day36_Git4.png new file mode 100644 index 000000000..55520a84d Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git4.png differ diff --git a/zh_tw/Days/Images/Day36_Git5.png b/zh_tw/Days/Images/Day36_Git5.png new file mode 100644 index 000000000..045842c2b Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git5.png differ diff --git a/zh_tw/Days/Images/Day36_Git6.png b/zh_tw/Days/Images/Day36_Git6.png new file mode 100644 index 000000000..d7a946b83 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git6.png differ diff --git a/zh_tw/Days/Images/Day36_Git7.png b/zh_tw/Days/Images/Day36_Git7.png new file mode 100644 index 000000000..247ed3883 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git7.png differ diff --git a/zh_tw/Days/Images/Day36_Git8.png b/zh_tw/Days/Images/Day36_Git8.png new file mode 100644 index 000000000..c8995639a Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git8.png differ diff --git a/zh_tw/Days/Images/Day36_Git9.png b/zh_tw/Days/Images/Day36_Git9.png new file mode 100644 index 000000000..e98f25a96 Binary files /dev/null and b/zh_tw/Days/Images/Day36_Git9.png differ diff --git a/zh_tw/Days/Images/Day37_Git1.png b/zh_tw/Days/Images/Day37_Git1.png new file mode 100644 index 000000000..b56fa138e Binary files /dev/null and b/zh_tw/Days/Images/Day37_Git1.png differ diff --git a/zh_tw/Days/Images/Day37_Git2.png b/zh_tw/Days/Images/Day37_Git2.png new file mode 100644 index 000000000..40c0a3346 Binary files /dev/null and b/zh_tw/Days/Images/Day37_Git2.png differ diff --git a/zh_tw/Days/Images/Day37_Git3.png b/zh_tw/Days/Images/Day37_Git3.png new file mode 100644 index 000000000..d658dbbc0 Binary files /dev/null and b/zh_tw/Days/Images/Day37_Git3.png differ diff --git a/zh_tw/Days/Images/Day38_Git1.png b/zh_tw/Days/Images/Day38_Git1.png new file mode 100644 index 000000000..179a56c54 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git1.png differ diff --git a/zh_tw/Days/Images/Day38_Git10.png b/zh_tw/Days/Images/Day38_Git10.png new file mode 100644 index 000000000..283dbd9fe Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git10.png differ diff --git a/zh_tw/Days/Images/Day38_Git11.png b/zh_tw/Days/Images/Day38_Git11.png new file mode 100644 index 000000000..1734adb3b Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git11.png differ diff --git a/zh_tw/Days/Images/Day38_Git12.png b/zh_tw/Days/Images/Day38_Git12.png new file mode 100644 index 000000000..087861e42 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git12.png differ diff --git a/zh_tw/Days/Images/Day38_Git13.png b/zh_tw/Days/Images/Day38_Git13.png new file mode 100644 index 000000000..25a38c291 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git13.png differ diff --git a/zh_tw/Days/Images/Day38_Git14.png b/zh_tw/Days/Images/Day38_Git14.png new file mode 100644 index 000000000..00d3bf185 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git14.png differ diff --git a/zh_tw/Days/Images/Day38_Git15.png b/zh_tw/Days/Images/Day38_Git15.png new file mode 100644 index 000000000..8cac77d1c Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git15.png differ diff --git a/zh_tw/Days/Images/Day38_Git16.png b/zh_tw/Days/Images/Day38_Git16.png new file mode 100644 index 000000000..961d08263 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git16.png differ diff --git a/zh_tw/Days/Images/Day38_Git2.png b/zh_tw/Days/Images/Day38_Git2.png new file mode 100644 index 000000000..3d1527142 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git2.png differ diff --git a/zh_tw/Days/Images/Day38_Git3.png b/zh_tw/Days/Images/Day38_Git3.png new file mode 100644 index 000000000..29b4ec370 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git3.png differ diff --git a/zh_tw/Days/Images/Day38_Git4.png b/zh_tw/Days/Images/Day38_Git4.png new file mode 100644 index 000000000..8fcc3bc3d Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git4.png differ diff --git a/zh_tw/Days/Images/Day38_Git5.png b/zh_tw/Days/Images/Day38_Git5.png new file mode 100644 index 000000000..f58a4352e Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git5.png differ diff --git a/zh_tw/Days/Images/Day38_Git6.png b/zh_tw/Days/Images/Day38_Git6.png new file mode 100644 index 000000000..8cf2a5bcb Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git6.png differ diff --git a/zh_tw/Days/Images/Day38_Git7.png b/zh_tw/Days/Images/Day38_Git7.png new file mode 100644 index 000000000..b588c4625 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git7.png differ diff --git a/zh_tw/Days/Images/Day38_Git8.png b/zh_tw/Days/Images/Day38_Git8.png new file mode 100644 index 000000000..f06deec09 Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git8.png differ diff --git a/zh_tw/Days/Images/Day38_Git9.png b/zh_tw/Days/Images/Day38_Git9.png new file mode 100644 index 000000000..6acc77cdb Binary files /dev/null and b/zh_tw/Days/Images/Day38_Git9.png differ diff --git a/zh_tw/Days/Images/Day39_Git1.png b/zh_tw/Days/Images/Day39_Git1.png new file mode 100644 index 000000000..070f1cd66 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git1.png differ diff --git a/zh_tw/Days/Images/Day39_Git10.png b/zh_tw/Days/Images/Day39_Git10.png new file mode 100644 index 000000000..d294c2845 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git10.png differ diff --git a/zh_tw/Days/Images/Day39_Git11.png b/zh_tw/Days/Images/Day39_Git11.png new file mode 100644 index 000000000..4011b5ba7 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git11.png differ diff --git a/zh_tw/Days/Images/Day39_Git12.png b/zh_tw/Days/Images/Day39_Git12.png new file mode 100644 index 000000000..d5988aaa7 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git12.png differ diff --git a/zh_tw/Days/Images/Day39_Git13.png b/zh_tw/Days/Images/Day39_Git13.png new file mode 100644 index 000000000..30f2daa52 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git13.png differ diff --git a/zh_tw/Days/Images/Day39_Git14.png b/zh_tw/Days/Images/Day39_Git14.png new file mode 100644 index 000000000..f043b59fb Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git14.png differ diff --git a/zh_tw/Days/Images/Day39_Git15.png b/zh_tw/Days/Images/Day39_Git15.png new file mode 100644 index 000000000..81a12604a Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git15.png differ diff --git a/zh_tw/Days/Images/Day39_Git16.png b/zh_tw/Days/Images/Day39_Git16.png new file mode 100644 index 000000000..5c7378c3d Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git16.png differ diff --git a/zh_tw/Days/Images/Day39_Git17.png b/zh_tw/Days/Images/Day39_Git17.png new file mode 100644 index 000000000..639edff57 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git17.png differ diff --git a/zh_tw/Days/Images/Day39_Git18.png b/zh_tw/Days/Images/Day39_Git18.png new file mode 100644 index 000000000..ce8105965 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git18.png differ diff --git a/zh_tw/Days/Images/Day39_Git19.png b/zh_tw/Days/Images/Day39_Git19.png new file mode 100644 index 000000000..2c2d09df4 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git19.png differ diff --git a/zh_tw/Days/Images/Day39_Git2.png b/zh_tw/Days/Images/Day39_Git2.png new file mode 100644 index 000000000..35abe320f Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git2.png differ diff --git a/zh_tw/Days/Images/Day39_Git20.png b/zh_tw/Days/Images/Day39_Git20.png new file mode 100644 index 000000000..f3c5cb823 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git20.png differ diff --git a/zh_tw/Days/Images/Day39_Git21.png b/zh_tw/Days/Images/Day39_Git21.png new file mode 100644 index 000000000..d00e8531c Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git21.png differ diff --git a/zh_tw/Days/Images/Day39_Git22.png b/zh_tw/Days/Images/Day39_Git22.png new file mode 100644 index 000000000..69405b2b8 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git22.png differ diff --git a/zh_tw/Days/Images/Day39_Git23.png b/zh_tw/Days/Images/Day39_Git23.png new file mode 100644 index 000000000..d33c0a40c Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git23.png differ diff --git a/zh_tw/Days/Images/Day39_Git24.png b/zh_tw/Days/Images/Day39_Git24.png new file mode 100644 index 000000000..125849a73 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git24.png differ diff --git a/zh_tw/Days/Images/Day39_Git25.png b/zh_tw/Days/Images/Day39_Git25.png new file mode 100644 index 000000000..1da0e0a65 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git25.png differ diff --git a/zh_tw/Days/Images/Day39_Git26.png b/zh_tw/Days/Images/Day39_Git26.png new file mode 100644 index 000000000..a284de410 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git26.png differ diff --git a/zh_tw/Days/Images/Day39_Git27.png b/zh_tw/Days/Images/Day39_Git27.png new file mode 100644 index 000000000..b00350d87 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git27.png differ diff --git a/zh_tw/Days/Images/Day39_Git28.png b/zh_tw/Days/Images/Day39_Git28.png new file mode 100644 index 000000000..3d9f992ec Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git28.png differ diff --git a/zh_tw/Days/Images/Day39_Git29.png b/zh_tw/Days/Images/Day39_Git29.png new file mode 100644 index 000000000..2156a4cd1 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git29.png differ diff --git a/zh_tw/Days/Images/Day39_Git3.png b/zh_tw/Days/Images/Day39_Git3.png new file mode 100644 index 000000000..985ed1492 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git3.png differ diff --git a/zh_tw/Days/Images/Day39_Git30.png b/zh_tw/Days/Images/Day39_Git30.png new file mode 100644 index 000000000..2314666ed Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git30.png differ diff --git a/zh_tw/Days/Images/Day39_Git4.png b/zh_tw/Days/Images/Day39_Git4.png new file mode 100644 index 000000000..7c70eba41 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git4.png differ diff --git a/zh_tw/Days/Images/Day39_Git5.png b/zh_tw/Days/Images/Day39_Git5.png new file mode 100644 index 000000000..2356b104c Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git5.png differ diff --git a/zh_tw/Days/Images/Day39_Git6.png b/zh_tw/Days/Images/Day39_Git6.png new file mode 100644 index 000000000..7395e164e Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git6.png differ diff --git a/zh_tw/Days/Images/Day39_Git7.png b/zh_tw/Days/Images/Day39_Git7.png new file mode 100644 index 000000000..332e813bd Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git7.png differ diff --git a/zh_tw/Days/Images/Day39_Git8.png b/zh_tw/Days/Images/Day39_Git8.png new file mode 100644 index 000000000..5d1202283 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git8.png differ diff --git a/zh_tw/Days/Images/Day39_Git9.png b/zh_tw/Days/Images/Day39_Git9.png new file mode 100644 index 000000000..118442215 Binary files /dev/null and b/zh_tw/Days/Images/Day39_Git9.png differ diff --git a/zh_tw/Days/Images/Day40_Git1.png b/zh_tw/Days/Images/Day40_Git1.png new file mode 100644 index 000000000..244e83f96 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git1.png differ diff --git a/zh_tw/Days/Images/Day40_Git10.png b/zh_tw/Days/Images/Day40_Git10.png new file mode 100644 index 000000000..000da9dad Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git10.png differ diff --git a/zh_tw/Days/Images/Day40_Git11.png b/zh_tw/Days/Images/Day40_Git11.png new file mode 100644 index 000000000..d1b1e9f65 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git11.png differ diff --git a/zh_tw/Days/Images/Day40_Git12.png b/zh_tw/Days/Images/Day40_Git12.png new file mode 100644 index 000000000..586f5fd5a Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git12.png differ diff --git a/zh_tw/Days/Images/Day40_Git13.png b/zh_tw/Days/Images/Day40_Git13.png new file mode 100644 index 000000000..d6a0edcc5 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git13.png differ diff --git a/zh_tw/Days/Images/Day40_Git14.png b/zh_tw/Days/Images/Day40_Git14.png new file mode 100644 index 000000000..3afec6580 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git14.png differ diff --git a/zh_tw/Days/Images/Day40_Git15.png b/zh_tw/Days/Images/Day40_Git15.png new file mode 100644 index 000000000..b10cefd0d Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git15.png differ diff --git a/zh_tw/Days/Images/Day40_Git16.png b/zh_tw/Days/Images/Day40_Git16.png new file mode 100644 index 000000000..5d5d17291 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git16.png differ diff --git a/zh_tw/Days/Images/Day40_Git17.png b/zh_tw/Days/Images/Day40_Git17.png new file mode 100644 index 000000000..d478e5ae6 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git17.png differ diff --git a/zh_tw/Days/Images/Day40_Git18.png b/zh_tw/Days/Images/Day40_Git18.png new file mode 100644 index 000000000..20f24c0fe Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git18.png differ diff --git a/zh_tw/Days/Images/Day40_Git19.png b/zh_tw/Days/Images/Day40_Git19.png new file mode 100644 index 000000000..03e0a433a Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git19.png differ diff --git a/zh_tw/Days/Images/Day40_Git2.png b/zh_tw/Days/Images/Day40_Git2.png new file mode 100644 index 000000000..70b6bc2ef Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git2.png differ diff --git a/zh_tw/Days/Images/Day40_Git20.png b/zh_tw/Days/Images/Day40_Git20.png new file mode 100644 index 000000000..edeb2a15b Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git20.png differ diff --git a/zh_tw/Days/Images/Day40_Git21.png b/zh_tw/Days/Images/Day40_Git21.png new file mode 100644 index 000000000..832241eea Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git21.png differ diff --git a/zh_tw/Days/Images/Day40_Git22.png b/zh_tw/Days/Images/Day40_Git22.png new file mode 100644 index 000000000..43425b969 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git22.png differ diff --git a/zh_tw/Days/Images/Day40_Git23.png b/zh_tw/Days/Images/Day40_Git23.png new file mode 100644 index 000000000..581582a67 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git23.png differ diff --git a/zh_tw/Days/Images/Day40_Git24.png b/zh_tw/Days/Images/Day40_Git24.png new file mode 100644 index 000000000..f565bbc56 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git24.png differ diff --git a/zh_tw/Days/Images/Day40_Git25.png b/zh_tw/Days/Images/Day40_Git25.png new file mode 100644 index 000000000..a9fb7e486 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git25.png differ diff --git a/zh_tw/Days/Images/Day40_Git26.png b/zh_tw/Days/Images/Day40_Git26.png new file mode 100644 index 000000000..26341bcdf Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git26.png differ diff --git a/zh_tw/Days/Images/Day40_Git27.png b/zh_tw/Days/Images/Day40_Git27.png new file mode 100644 index 000000000..2f1488a32 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git27.png differ diff --git a/zh_tw/Days/Images/Day40_Git28.png b/zh_tw/Days/Images/Day40_Git28.png new file mode 100644 index 000000000..c20e5deae Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git28.png differ diff --git a/zh_tw/Days/Images/Day40_Git29.png b/zh_tw/Days/Images/Day40_Git29.png new file mode 100644 index 000000000..1cd6361c7 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git29.png differ diff --git a/zh_tw/Days/Images/Day40_Git3.png b/zh_tw/Days/Images/Day40_Git3.png new file mode 100644 index 000000000..fb5cd970f Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git3.png differ diff --git a/zh_tw/Days/Images/Day40_Git4.png b/zh_tw/Days/Images/Day40_Git4.png new file mode 100644 index 000000000..b4929f45a Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git4.png differ diff --git a/zh_tw/Days/Images/Day40_Git5.png b/zh_tw/Days/Images/Day40_Git5.png new file mode 100644 index 000000000..29644b110 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git5.png differ diff --git a/zh_tw/Days/Images/Day40_Git6.png b/zh_tw/Days/Images/Day40_Git6.png new file mode 100644 index 000000000..57f154850 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git6.png differ diff --git a/zh_tw/Days/Images/Day40_Git7.png b/zh_tw/Days/Images/Day40_Git7.png new file mode 100644 index 000000000..ef3f25dd6 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git7.png differ diff --git a/zh_tw/Days/Images/Day40_Git8.png b/zh_tw/Days/Images/Day40_Git8.png new file mode 100644 index 000000000..0307f9729 Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git8.png differ diff --git a/zh_tw/Days/Images/Day40_Git9.png b/zh_tw/Days/Images/Day40_Git9.png new file mode 100644 index 000000000..96522ae2a Binary files /dev/null and b/zh_tw/Days/Images/Day40_Git9.png differ diff --git a/zh_tw/Days/Images/Day41_Git1.png b/zh_tw/Days/Images/Day41_Git1.png new file mode 100644 index 000000000..0990499f8 Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git1.png differ diff --git a/zh_tw/Days/Images/Day41_Git10.png b/zh_tw/Days/Images/Day41_Git10.png new file mode 100644 index 000000000..8267e5623 Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git10.png differ diff --git a/zh_tw/Days/Images/Day41_Git11.png b/zh_tw/Days/Images/Day41_Git11.png new file mode 100644 index 000000000..a3e1a5343 Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git11.png differ diff --git a/zh_tw/Days/Images/Day41_Git12.png b/zh_tw/Days/Images/Day41_Git12.png new file mode 100644 index 000000000..977dc45bf Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git12.png differ diff --git a/zh_tw/Days/Images/Day41_Git13.png b/zh_tw/Days/Images/Day41_Git13.png new file mode 100644 index 000000000..92cccb4b5 Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git13.png differ diff --git a/zh_tw/Days/Images/Day41_Git14.png b/zh_tw/Days/Images/Day41_Git14.png new file mode 100644 index 000000000..bbd9beae3 Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git14.png differ diff --git a/zh_tw/Days/Images/Day41_Git15.png b/zh_tw/Days/Images/Day41_Git15.png new file mode 100644 index 000000000..08fa3a9da Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git15.png differ diff --git a/zh_tw/Days/Images/Day41_Git2.png b/zh_tw/Days/Images/Day41_Git2.png new file mode 100644 index 000000000..09c581d6f Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git2.png differ diff --git a/zh_tw/Days/Images/Day41_Git3.png b/zh_tw/Days/Images/Day41_Git3.png new file mode 100644 index 000000000..d583a5297 Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git3.png differ diff --git a/zh_tw/Days/Images/Day41_Git4.png b/zh_tw/Days/Images/Day41_Git4.png new file mode 100644 index 000000000..29480c2cd Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git4.png differ diff --git a/zh_tw/Days/Images/Day41_Git5.png b/zh_tw/Days/Images/Day41_Git5.png new file mode 100644 index 000000000..3623dbf5c Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git5.png differ diff --git a/zh_tw/Days/Images/Day41_Git6.png b/zh_tw/Days/Images/Day41_Git6.png new file mode 100644 index 000000000..3fadf52d6 Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git6.png differ diff --git a/zh_tw/Days/Images/Day41_Git7.png b/zh_tw/Days/Images/Day41_Git7.png new file mode 100644 index 000000000..adabbb3c6 Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git7.png differ diff --git a/zh_tw/Days/Images/Day41_Git8.png b/zh_tw/Days/Images/Day41_Git8.png new file mode 100644 index 000000000..8339db6cb Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git8.png differ diff --git a/zh_tw/Days/Images/Day41_Git9.png b/zh_tw/Days/Images/Day41_Git9.png new file mode 100644 index 000000000..f99ffaf3c Binary files /dev/null and b/zh_tw/Days/Images/Day41_Git9.png differ diff --git a/zh_tw/Days/Images/Day42_Containers1.png b/zh_tw/Days/Images/Day42_Containers1.png new file mode 100644 index 000000000..37bd9d0c6 Binary files /dev/null and b/zh_tw/Days/Images/Day42_Containers1.png differ diff --git a/zh_tw/Days/Images/Day42_Containers2.png b/zh_tw/Days/Images/Day42_Containers2.png new file mode 100644 index 000000000..4d28ff7cc Binary files /dev/null and b/zh_tw/Days/Images/Day42_Containers2.png differ diff --git a/zh_tw/Days/Images/Day42_Containers3.png b/zh_tw/Days/Images/Day42_Containers3.png new file mode 100644 index 000000000..5c103ae7b Binary files /dev/null and b/zh_tw/Days/Images/Day42_Containers3.png differ diff --git a/zh_tw/Days/Images/Day42_Containers4.png b/zh_tw/Days/Images/Day42_Containers4.png new file mode 100644 index 000000000..358d6ad1c Binary files /dev/null and b/zh_tw/Days/Images/Day42_Containers4.png differ diff --git a/zh_tw/Days/Images/Day42_Containers5.png b/zh_tw/Days/Images/Day42_Containers5.png new file mode 100644 index 000000000..ba2520789 Binary files /dev/null and b/zh_tw/Days/Images/Day42_Containers5.png differ diff --git a/zh_tw/Days/Images/Day42_Containers6.png b/zh_tw/Days/Images/Day42_Containers6.png new file mode 100644 index 000000000..49f1e972a Binary files /dev/null and b/zh_tw/Days/Images/Day42_Containers6.png differ diff --git a/zh_tw/Days/Images/Day42_Containers7.png b/zh_tw/Days/Images/Day42_Containers7.png new file mode 100644 index 000000000..d7de2b5bf Binary files /dev/null and b/zh_tw/Days/Images/Day42_Containers7.png differ diff --git a/zh_tw/Days/Images/Day43_Containers1.png b/zh_tw/Days/Images/Day43_Containers1.png new file mode 100644 index 000000000..d1a610973 Binary files /dev/null and b/zh_tw/Days/Images/Day43_Containers1.png differ diff --git a/zh_tw/Days/Images/Day44_Containers1.png b/zh_tw/Days/Images/Day44_Containers1.png new file mode 100644 index 000000000..3f6ba7395 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers1.png differ diff --git a/zh_tw/Days/Images/Day44_Containers10.png b/zh_tw/Days/Images/Day44_Containers10.png new file mode 100644 index 000000000..afebf4b65 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers10.png differ diff --git a/zh_tw/Days/Images/Day44_Containers11.png b/zh_tw/Days/Images/Day44_Containers11.png new file mode 100644 index 000000000..32a2febcc Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers11.png differ diff --git a/zh_tw/Days/Images/Day44_Containers12.png b/zh_tw/Days/Images/Day44_Containers12.png new file mode 100644 index 000000000..9bbb02f1f Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers12.png differ diff --git a/zh_tw/Days/Images/Day44_Containers13.png b/zh_tw/Days/Images/Day44_Containers13.png new file mode 100644 index 000000000..5fdf42eec Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers13.png differ diff --git a/zh_tw/Days/Images/Day44_Containers14.png b/zh_tw/Days/Images/Day44_Containers14.png new file mode 100644 index 000000000..9d02de040 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers14.png differ diff --git a/zh_tw/Days/Images/Day44_Containers15.png b/zh_tw/Days/Images/Day44_Containers15.png new file mode 100644 index 000000000..d5d0714fb Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers15.png differ diff --git a/zh_tw/Days/Images/Day44_Containers16.png b/zh_tw/Days/Images/Day44_Containers16.png new file mode 100644 index 000000000..3c9c93f97 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers16.png differ diff --git a/zh_tw/Days/Images/Day44_Containers17.png b/zh_tw/Days/Images/Day44_Containers17.png new file mode 100644 index 000000000..4d67d0004 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers17.png differ diff --git a/zh_tw/Days/Images/Day44_Containers18.png b/zh_tw/Days/Images/Day44_Containers18.png new file mode 100644 index 000000000..6654d5eb1 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers18.png differ diff --git a/zh_tw/Days/Images/Day44_Containers19.png b/zh_tw/Days/Images/Day44_Containers19.png new file mode 100644 index 000000000..02d74d46b Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers19.png differ diff --git a/zh_tw/Days/Images/Day44_Containers2.png b/zh_tw/Days/Images/Day44_Containers2.png new file mode 100644 index 000000000..588d4db7d Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers2.png differ diff --git a/zh_tw/Days/Images/Day44_Containers20.png b/zh_tw/Days/Images/Day44_Containers20.png new file mode 100644 index 000000000..0aa4740f0 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers20.png differ diff --git a/zh_tw/Days/Images/Day44_Containers21.png b/zh_tw/Days/Images/Day44_Containers21.png new file mode 100644 index 000000000..e5947e69c Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers21.png differ diff --git a/zh_tw/Days/Images/Day44_Containers22.png b/zh_tw/Days/Images/Day44_Containers22.png new file mode 100644 index 000000000..df7678f81 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers22.png differ diff --git a/zh_tw/Days/Images/Day44_Containers23.png b/zh_tw/Days/Images/Day44_Containers23.png new file mode 100644 index 000000000..924af2c1d Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers23.png differ diff --git a/zh_tw/Days/Images/Day44_Containers24.png b/zh_tw/Days/Images/Day44_Containers24.png new file mode 100644 index 000000000..16c5ba556 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers24.png differ diff --git a/zh_tw/Days/Images/Day44_Containers3.png b/zh_tw/Days/Images/Day44_Containers3.png new file mode 100644 index 000000000..451abd231 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers3.png differ diff --git a/zh_tw/Days/Images/Day44_Containers4.png b/zh_tw/Days/Images/Day44_Containers4.png new file mode 100644 index 000000000..55b9a5070 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers4.png differ diff --git a/zh_tw/Days/Images/Day44_Containers5.png b/zh_tw/Days/Images/Day44_Containers5.png new file mode 100644 index 000000000..f6fedc63f Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers5.png differ diff --git a/zh_tw/Days/Images/Day44_Containers6.png b/zh_tw/Days/Images/Day44_Containers6.png new file mode 100644 index 000000000..077d0fedd Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers6.png differ diff --git a/zh_tw/Days/Images/Day44_Containers7.png b/zh_tw/Days/Images/Day44_Containers7.png new file mode 100644 index 000000000..b3f61d651 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers7.png differ diff --git a/zh_tw/Days/Images/Day44_Containers8.png b/zh_tw/Days/Images/Day44_Containers8.png new file mode 100644 index 000000000..3ee700a0e Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers8.png differ diff --git a/zh_tw/Days/Images/Day44_Containers9.png b/zh_tw/Days/Images/Day44_Containers9.png new file mode 100644 index 000000000..4762f34f4 Binary files /dev/null and b/zh_tw/Days/Images/Day44_Containers9.png differ diff --git a/zh_tw/Days/Images/Day45_Containers1.png b/zh_tw/Days/Images/Day45_Containers1.png new file mode 100644 index 000000000..4667e008b Binary files /dev/null and b/zh_tw/Days/Images/Day45_Containers1.png differ diff --git a/zh_tw/Days/Images/Day45_Containers2.png b/zh_tw/Days/Images/Day45_Containers2.png new file mode 100644 index 000000000..b5bd6c803 Binary files /dev/null and b/zh_tw/Days/Images/Day45_Containers2.png differ diff --git a/zh_tw/Days/Images/Day45_Containers3.png b/zh_tw/Days/Images/Day45_Containers3.png new file mode 100644 index 000000000..18171ce90 Binary files /dev/null and b/zh_tw/Days/Images/Day45_Containers3.png differ diff --git a/zh_tw/Days/Images/Day45_Containers4.png b/zh_tw/Days/Images/Day45_Containers4.png new file mode 100644 index 000000000..2ff476297 Binary files /dev/null and b/zh_tw/Days/Images/Day45_Containers4.png differ diff --git a/zh_tw/Days/Images/Day45_Containers5.png b/zh_tw/Days/Images/Day45_Containers5.png new file mode 100644 index 000000000..35e6307a5 Binary files /dev/null and b/zh_tw/Days/Images/Day45_Containers5.png differ diff --git a/zh_tw/Days/Images/Day45_Containers6.png b/zh_tw/Days/Images/Day45_Containers6.png new file mode 100644 index 000000000..10f4a5bca Binary files /dev/null and b/zh_tw/Days/Images/Day45_Containers6.png differ diff --git a/zh_tw/Days/Images/Day45_Containers7.png b/zh_tw/Days/Images/Day45_Containers7.png new file mode 100644 index 000000000..9f433a2b6 Binary files /dev/null and b/zh_tw/Days/Images/Day45_Containers7.png differ diff --git a/zh_tw/Days/Images/Day45_Containers8.png b/zh_tw/Days/Images/Day45_Containers8.png new file mode 100644 index 000000000..5a92d6df8 Binary files /dev/null and b/zh_tw/Days/Images/Day45_Containers8.png differ diff --git a/zh_tw/Days/Images/Day46_Containers1.png b/zh_tw/Days/Images/Day46_Containers1.png new file mode 100644 index 000000000..c36487226 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers1.png differ diff --git a/zh_tw/Days/Images/Day46_Containers10.png b/zh_tw/Days/Images/Day46_Containers10.png new file mode 100644 index 000000000..201ff3beb Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers10.png differ diff --git a/zh_tw/Days/Images/Day46_Containers11.png b/zh_tw/Days/Images/Day46_Containers11.png new file mode 100644 index 000000000..9381ccac0 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers11.png differ diff --git a/zh_tw/Days/Images/Day46_Containers12.png b/zh_tw/Days/Images/Day46_Containers12.png new file mode 100644 index 000000000..7c73bb650 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers12.png differ diff --git a/zh_tw/Days/Images/Day46_Containers13.png b/zh_tw/Days/Images/Day46_Containers13.png new file mode 100644 index 000000000..d5edeb1b7 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers13.png differ diff --git a/zh_tw/Days/Images/Day46_Containers14.png b/zh_tw/Days/Images/Day46_Containers14.png new file mode 100644 index 000000000..48a471ff7 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers14.png differ diff --git a/zh_tw/Days/Images/Day46_Containers15.png b/zh_tw/Days/Images/Day46_Containers15.png new file mode 100644 index 000000000..3773c6bf9 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers15.png differ diff --git a/zh_tw/Days/Images/Day46_Containers16.png b/zh_tw/Days/Images/Day46_Containers16.png new file mode 100644 index 000000000..c117807bc Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers16.png differ diff --git a/zh_tw/Days/Images/Day46_Containers17.png b/zh_tw/Days/Images/Day46_Containers17.png new file mode 100644 index 000000000..126fda2e0 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers17.png differ diff --git a/zh_tw/Days/Images/Day46_Containers2.png b/zh_tw/Days/Images/Day46_Containers2.png new file mode 100644 index 000000000..2d1c16830 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers2.png differ diff --git a/zh_tw/Days/Images/Day46_Containers3.png b/zh_tw/Days/Images/Day46_Containers3.png new file mode 100644 index 000000000..a0275a0e8 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers3.png differ diff --git a/zh_tw/Days/Images/Day46_Containers4.png b/zh_tw/Days/Images/Day46_Containers4.png new file mode 100644 index 000000000..72b3ca537 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers4.png differ diff --git a/zh_tw/Days/Images/Day46_Containers5.png b/zh_tw/Days/Images/Day46_Containers5.png new file mode 100644 index 000000000..89486c004 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers5.png differ diff --git a/zh_tw/Days/Images/Day46_Containers6.png b/zh_tw/Days/Images/Day46_Containers6.png new file mode 100644 index 000000000..0783f7ded Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers6.png differ diff --git a/zh_tw/Days/Images/Day46_Containers7.png b/zh_tw/Days/Images/Day46_Containers7.png new file mode 100644 index 000000000..9d9a78694 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers7.png differ diff --git a/zh_tw/Days/Images/Day46_Containers8.png b/zh_tw/Days/Images/Day46_Containers8.png new file mode 100644 index 000000000..51d96e2b4 Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers8.png differ diff --git a/zh_tw/Days/Images/Day46_Containers9.png b/zh_tw/Days/Images/Day46_Containers9.png new file mode 100644 index 000000000..ac36df4ed Binary files /dev/null and b/zh_tw/Days/Images/Day46_Containers9.png differ diff --git a/zh_tw/Days/Images/Day47_Containers1.png b/zh_tw/Days/Images/Day47_Containers1.png new file mode 100644 index 000000000..cb1b7ee9d Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers1.png differ diff --git a/zh_tw/Days/Images/Day47_Containers10.png b/zh_tw/Days/Images/Day47_Containers10.png new file mode 100644 index 000000000..b0f0f7baa Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers10.png differ diff --git a/zh_tw/Days/Images/Day47_Containers11.png b/zh_tw/Days/Images/Day47_Containers11.png new file mode 100644 index 000000000..72bf6d07c Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers11.png differ diff --git a/zh_tw/Days/Images/Day47_Containers2.png b/zh_tw/Days/Images/Day47_Containers2.png new file mode 100644 index 000000000..3442b852d Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers2.png differ diff --git a/zh_tw/Days/Images/Day47_Containers3.png b/zh_tw/Days/Images/Day47_Containers3.png new file mode 100644 index 000000000..ee6f6391a Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers3.png differ diff --git a/zh_tw/Days/Images/Day47_Containers4.png b/zh_tw/Days/Images/Day47_Containers4.png new file mode 100644 index 000000000..d29947812 Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers4.png differ diff --git a/zh_tw/Days/Images/Day47_Containers5.png b/zh_tw/Days/Images/Day47_Containers5.png new file mode 100644 index 000000000..86b630f60 Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers5.png differ diff --git a/zh_tw/Days/Images/Day47_Containers6.png b/zh_tw/Days/Images/Day47_Containers6.png new file mode 100644 index 000000000..f19cfa4fd Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers6.png differ diff --git a/zh_tw/Days/Images/Day47_Containers7.png b/zh_tw/Days/Images/Day47_Containers7.png new file mode 100644 index 000000000..024498fd3 Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers7.png differ diff --git a/zh_tw/Days/Images/Day47_Containers8.png b/zh_tw/Days/Images/Day47_Containers8.png new file mode 100644 index 000000000..8ed349cb3 Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers8.png differ diff --git a/zh_tw/Days/Images/Day47_Containers9.png b/zh_tw/Days/Images/Day47_Containers9.png new file mode 100644 index 000000000..e4c47d98e Binary files /dev/null and b/zh_tw/Days/Images/Day47_Containers9.png differ diff --git a/zh_tw/Days/Images/Day48_Containers1.png b/zh_tw/Days/Images/Day48_Containers1.png new file mode 100644 index 000000000..5ebe89d9c Binary files /dev/null and b/zh_tw/Days/Images/Day48_Containers1.png differ diff --git a/zh_tw/Days/Images/Day48_Containers2.png b/zh_tw/Days/Images/Day48_Containers2.png new file mode 100644 index 000000000..7ea383497 Binary files /dev/null and b/zh_tw/Days/Images/Day48_Containers2.png differ diff --git a/zh_tw/Days/Images/Day48_Containers3.png b/zh_tw/Days/Images/Day48_Containers3.png new file mode 100644 index 000000000..8d579af0e Binary files /dev/null and b/zh_tw/Days/Images/Day48_Containers3.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes1.png b/zh_tw/Days/Images/Day49_Kubernetes1.png new file mode 100644 index 000000000..93bdd0128 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes1.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes10.png b/zh_tw/Days/Images/Day49_Kubernetes10.png new file mode 100644 index 000000000..664504be5 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes10.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes11.png b/zh_tw/Days/Images/Day49_Kubernetes11.png new file mode 100644 index 000000000..b54b15123 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes11.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes12.png b/zh_tw/Days/Images/Day49_Kubernetes12.png new file mode 100644 index 000000000..1309bcd33 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes12.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes2.png b/zh_tw/Days/Images/Day49_Kubernetes2.png new file mode 100644 index 000000000..0f696579e Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes2.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes3.png b/zh_tw/Days/Images/Day49_Kubernetes3.png new file mode 100644 index 000000000..780cf5dd4 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes3.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes4.png b/zh_tw/Days/Images/Day49_Kubernetes4.png new file mode 100644 index 000000000..3decc1e16 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes4.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes5.png b/zh_tw/Days/Images/Day49_Kubernetes5.png new file mode 100644 index 000000000..be08a72e9 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes5.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes6.png b/zh_tw/Days/Images/Day49_Kubernetes6.png new file mode 100644 index 000000000..a9f205013 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes6.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes7.png b/zh_tw/Days/Images/Day49_Kubernetes7.png new file mode 100644 index 000000000..855754724 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes7.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes8.png b/zh_tw/Days/Images/Day49_Kubernetes8.png new file mode 100644 index 000000000..8cac10a7a Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes8.png differ diff --git a/zh_tw/Days/Images/Day49_Kubernetes9.png b/zh_tw/Days/Images/Day49_Kubernetes9.png new file mode 100644 index 000000000..2edd8dba1 Binary files /dev/null and b/zh_tw/Days/Images/Day49_Kubernetes9.png differ diff --git a/zh_tw/Days/Images/Day51_Kubernetes1.png b/zh_tw/Days/Images/Day51_Kubernetes1.png new file mode 100644 index 000000000..b1e581041 Binary files /dev/null and b/zh_tw/Days/Images/Day51_Kubernetes1.png differ diff --git a/zh_tw/Days/Images/Day51_Kubernetes2.png b/zh_tw/Days/Images/Day51_Kubernetes2.png new file mode 100644 index 000000000..0aff9ea9b Binary files /dev/null and b/zh_tw/Days/Images/Day51_Kubernetes2.png differ diff --git a/zh_tw/Days/Images/Day51_Kubernetes3.png b/zh_tw/Days/Images/Day51_Kubernetes3.png new file mode 100644 index 000000000..d971bfa61 Binary files /dev/null and b/zh_tw/Days/Images/Day51_Kubernetes3.png differ diff --git a/zh_tw/Days/Images/Day51_Kubernetes4.png b/zh_tw/Days/Images/Day51_Kubernetes4.png new file mode 100644 index 000000000..8fd699649 Binary files /dev/null and b/zh_tw/Days/Images/Day51_Kubernetes4.png differ diff --git a/zh_tw/Days/Images/Day51_Kubernetes5.png b/zh_tw/Days/Images/Day51_Kubernetes5.png new file mode 100644 index 000000000..8d130e3cf Binary files /dev/null and b/zh_tw/Days/Images/Day51_Kubernetes5.png differ diff --git a/zh_tw/Days/Images/Day51_Kubernetes6.png b/zh_tw/Days/Images/Day51_Kubernetes6.png new file mode 100644 index 000000000..3a8d6d0f2 Binary files /dev/null and b/zh_tw/Days/Images/Day51_Kubernetes6.png differ diff --git a/zh_tw/Days/Images/Day51_Kubernetes7.png b/zh_tw/Days/Images/Day51_Kubernetes7.png new file mode 100644 index 000000000..62a249f44 Binary files /dev/null and b/zh_tw/Days/Images/Day51_Kubernetes7.png differ diff --git a/zh_tw/Days/Images/Day51_Kubernetes8.png b/zh_tw/Days/Images/Day51_Kubernetes8.png new file mode 100644 index 000000000..7d727c182 Binary files /dev/null and b/zh_tw/Days/Images/Day51_Kubernetes8.png differ diff --git a/zh_tw/Days/Images/Day52_Kubernetes1.png b/zh_tw/Days/Images/Day52_Kubernetes1.png new file mode 100644 index 000000000..3f950327d Binary files /dev/null and b/zh_tw/Days/Images/Day52_Kubernetes1.png differ diff --git a/zh_tw/Days/Images/Day52_Kubernetes2.png b/zh_tw/Days/Images/Day52_Kubernetes2.png new file mode 100644 index 000000000..9944e7564 Binary files /dev/null and b/zh_tw/Days/Images/Day52_Kubernetes2.png differ diff --git a/zh_tw/Days/Images/Day52_Kubernetes3.png b/zh_tw/Days/Images/Day52_Kubernetes3.png new file mode 100644 index 000000000..fdd08ee1e Binary files /dev/null and b/zh_tw/Days/Images/Day52_Kubernetes3.png differ diff --git a/zh_tw/Days/Images/Day52_Kubernetes4.png b/zh_tw/Days/Images/Day52_Kubernetes4.png new file mode 100644 index 000000000..c702a52d4 Binary files /dev/null and b/zh_tw/Days/Images/Day52_Kubernetes4.png differ diff --git a/zh_tw/Days/Images/Day52_Kubernetes5.png b/zh_tw/Days/Images/Day52_Kubernetes5.png new file mode 100644 index 000000000..4f2650915 Binary files /dev/null and b/zh_tw/Days/Images/Day52_Kubernetes5.png differ diff --git a/zh_tw/Days/Images/Day52_Kubernetes6.png b/zh_tw/Days/Images/Day52_Kubernetes6.png new file mode 100644 index 000000000..e645f0672 Binary files /dev/null and b/zh_tw/Days/Images/Day52_Kubernetes6.png differ diff --git a/zh_tw/Days/Images/Day52_Kubernetes7.png b/zh_tw/Days/Images/Day52_Kubernetes7.png new file mode 100644 index 000000000..509fd55ad Binary files /dev/null and b/zh_tw/Days/Images/Day52_Kubernetes7.png differ diff --git a/zh_tw/Days/Images/Day52_Kubernetes8.png b/zh_tw/Days/Images/Day52_Kubernetes8.png new file mode 100644 index 000000000..ef28850b5 Binary files /dev/null and b/zh_tw/Days/Images/Day52_Kubernetes8.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes1.png b/zh_tw/Days/Images/Day53_Kubernetes1.png new file mode 100644 index 000000000..0817f64a5 Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes1.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes10.png b/zh_tw/Days/Images/Day53_Kubernetes10.png new file mode 100644 index 000000000..4bf58ed82 Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes10.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes11.png b/zh_tw/Days/Images/Day53_Kubernetes11.png new file mode 100644 index 000000000..f4ba01bc5 Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes11.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes12.png b/zh_tw/Days/Images/Day53_Kubernetes12.png new file mode 100644 index 000000000..6f67dc999 Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes12.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes13.png b/zh_tw/Days/Images/Day53_Kubernetes13.png new file mode 100644 index 000000000..be59720de Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes13.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes14.png b/zh_tw/Days/Images/Day53_Kubernetes14.png new file mode 100644 index 000000000..b8901982a Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes14.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes2.png b/zh_tw/Days/Images/Day53_Kubernetes2.png new file mode 100644 index 000000000..4f8138fd7 Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes2.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes3.png b/zh_tw/Days/Images/Day53_Kubernetes3.png new file mode 100644 index 000000000..8772077ce Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes3.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes4.png b/zh_tw/Days/Images/Day53_Kubernetes4.png new file mode 100644 index 000000000..908574339 Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes4.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes5.png b/zh_tw/Days/Images/Day53_Kubernetes5.png new file mode 100644 index 000000000..7092c82df Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes5.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes6.png b/zh_tw/Days/Images/Day53_Kubernetes6.png new file mode 100644 index 000000000..f8a57318f Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes6.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes7.png b/zh_tw/Days/Images/Day53_Kubernetes7.png new file mode 100644 index 000000000..9dd643a3d Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes7.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes8.png b/zh_tw/Days/Images/Day53_Kubernetes8.png new file mode 100644 index 000000000..3f33324d0 Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes8.png differ diff --git a/zh_tw/Days/Images/Day53_Kubernetes9.png b/zh_tw/Days/Images/Day53_Kubernetes9.png new file mode 100644 index 000000000..420c7634b Binary files /dev/null and b/zh_tw/Days/Images/Day53_Kubernetes9.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes1.png b/zh_tw/Days/Images/Day54_Kubernetes1.png new file mode 100644 index 000000000..00c3843ee Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes1.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes10.png b/zh_tw/Days/Images/Day54_Kubernetes10.png new file mode 100644 index 000000000..b0015df69 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes10.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes11.png b/zh_tw/Days/Images/Day54_Kubernetes11.png new file mode 100644 index 000000000..add9d6810 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes11.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes12.png b/zh_tw/Days/Images/Day54_Kubernetes12.png new file mode 100644 index 000000000..841d99a2f Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes12.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes13.png b/zh_tw/Days/Images/Day54_Kubernetes13.png new file mode 100644 index 000000000..b4c1b370c Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes13.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes14.png b/zh_tw/Days/Images/Day54_Kubernetes14.png new file mode 100644 index 000000000..597685a03 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes14.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes15.png b/zh_tw/Days/Images/Day54_Kubernetes15.png new file mode 100644 index 000000000..7807a3b14 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes15.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes16.png b/zh_tw/Days/Images/Day54_Kubernetes16.png new file mode 100644 index 000000000..35779d98d Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes16.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes17.png b/zh_tw/Days/Images/Day54_Kubernetes17.png new file mode 100644 index 000000000..08f8f20b6 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes17.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes2.png b/zh_tw/Days/Images/Day54_Kubernetes2.png new file mode 100644 index 000000000..93bfbf480 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes2.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes3.png b/zh_tw/Days/Images/Day54_Kubernetes3.png new file mode 100644 index 000000000..fffa9d220 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes3.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes4.png b/zh_tw/Days/Images/Day54_Kubernetes4.png new file mode 100644 index 000000000..fa0938685 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes4.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes5.png b/zh_tw/Days/Images/Day54_Kubernetes5.png new file mode 100644 index 000000000..d161cdcc8 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes5.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes6.png b/zh_tw/Days/Images/Day54_Kubernetes6.png new file mode 100644 index 000000000..5d181720f Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes6.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes7.png b/zh_tw/Days/Images/Day54_Kubernetes7.png new file mode 100644 index 000000000..ed5e8da98 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes7.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes8.png b/zh_tw/Days/Images/Day54_Kubernetes8.png new file mode 100644 index 000000000..51dc0f714 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes8.png differ diff --git a/zh_tw/Days/Images/Day54_Kubernetes9.png b/zh_tw/Days/Images/Day54_Kubernetes9.png new file mode 100644 index 000000000..ad59e8c55 Binary files /dev/null and b/zh_tw/Days/Images/Day54_Kubernetes9.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes1.png b/zh_tw/Days/Images/Day55_Kubernetes1.png new file mode 100644 index 000000000..33d2efd1c Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes1.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes10.png b/zh_tw/Days/Images/Day55_Kubernetes10.png new file mode 100644 index 000000000..d288af95b Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes10.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes11.png b/zh_tw/Days/Images/Day55_Kubernetes11.png new file mode 100644 index 000000000..c8efb8405 Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes11.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes12.png b/zh_tw/Days/Images/Day55_Kubernetes12.png new file mode 100644 index 000000000..47d950cb1 Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes12.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes13.png b/zh_tw/Days/Images/Day55_Kubernetes13.png new file mode 100644 index 000000000..e0092c17d Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes13.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes14.png b/zh_tw/Days/Images/Day55_Kubernetes14.png new file mode 100644 index 000000000..0c0bc68ca Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes14.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes15.png b/zh_tw/Days/Images/Day55_Kubernetes15.png new file mode 100644 index 000000000..4baaee56f Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes15.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes16.png b/zh_tw/Days/Images/Day55_Kubernetes16.png new file mode 100644 index 000000000..3fd01241e Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes16.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes2.png b/zh_tw/Days/Images/Day55_Kubernetes2.png new file mode 100644 index 000000000..099a2c510 Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes2.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes3.png b/zh_tw/Days/Images/Day55_Kubernetes3.png new file mode 100644 index 000000000..bab2cacd0 Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes3.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes4.png b/zh_tw/Days/Images/Day55_Kubernetes4.png new file mode 100644 index 000000000..f90a5db5e Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes4.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes5.png b/zh_tw/Days/Images/Day55_Kubernetes5.png new file mode 100644 index 000000000..975f466b8 Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes5.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes6.png b/zh_tw/Days/Images/Day55_Kubernetes6.png new file mode 100644 index 000000000..53d0b007e Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes6.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes7.png b/zh_tw/Days/Images/Day55_Kubernetes7.png new file mode 100644 index 000000000..19ae76f94 Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes7.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes8.png b/zh_tw/Days/Images/Day55_Kubernetes8.png new file mode 100644 index 000000000..df4fad6fb Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes8.png differ diff --git a/zh_tw/Days/Images/Day55_Kubernetes9.png b/zh_tw/Days/Images/Day55_Kubernetes9.png new file mode 100644 index 000000000..2406ba104 Binary files /dev/null and b/zh_tw/Days/Images/Day55_Kubernetes9.png differ diff --git a/zh_tw/Days/Images/Day57_IAC1.png b/zh_tw/Days/Images/Day57_IAC1.png new file mode 100644 index 000000000..effc515af Binary files /dev/null and b/zh_tw/Days/Images/Day57_IAC1.png differ diff --git a/zh_tw/Days/Images/Day57_IAC2.png b/zh_tw/Days/Images/Day57_IAC2.png new file mode 100644 index 000000000..63bc4c60b Binary files /dev/null and b/zh_tw/Days/Images/Day57_IAC2.png differ diff --git a/zh_tw/Days/Images/Day58_IAC1.png b/zh_tw/Days/Images/Day58_IAC1.png new file mode 100644 index 000000000..72fbe78cf Binary files /dev/null and b/zh_tw/Days/Images/Day58_IAC1.png differ diff --git a/zh_tw/Days/Images/Day58_IAC2.png b/zh_tw/Days/Images/Day58_IAC2.png new file mode 100644 index 000000000..108dc5d48 Binary files /dev/null and b/zh_tw/Days/Images/Day58_IAC2.png differ diff --git a/zh_tw/Days/Images/Day58_IAC3.png b/zh_tw/Days/Images/Day58_IAC3.png new file mode 100644 index 000000000..c5120baea Binary files /dev/null and b/zh_tw/Days/Images/Day58_IAC3.png differ diff --git a/zh_tw/Days/Images/Day58_IAC4.png b/zh_tw/Days/Images/Day58_IAC4.png new file mode 100644 index 000000000..cf619a712 Binary files /dev/null and b/zh_tw/Days/Images/Day58_IAC4.png differ diff --git a/zh_tw/Days/Images/Day59_IAC1.png b/zh_tw/Days/Images/Day59_IAC1.png new file mode 100644 index 000000000..dced9fd91 Binary files /dev/null and b/zh_tw/Days/Images/Day59_IAC1.png differ diff --git a/zh_tw/Days/Images/Day59_IAC2.png b/zh_tw/Days/Images/Day59_IAC2.png new file mode 100644 index 000000000..dea8aa71f Binary files /dev/null and b/zh_tw/Days/Images/Day59_IAC2.png differ diff --git a/zh_tw/Days/Images/Day59_IAC3.png b/zh_tw/Days/Images/Day59_IAC3.png new file mode 100644 index 000000000..8c703be72 Binary files /dev/null and b/zh_tw/Days/Images/Day59_IAC3.png differ diff --git a/zh_tw/Days/Images/Day59_IAC4.png b/zh_tw/Days/Images/Day59_IAC4.png new file mode 100644 index 000000000..a4a06c3f4 Binary files /dev/null and b/zh_tw/Days/Images/Day59_IAC4.png differ diff --git a/zh_tw/Days/Images/Day59_IAC5.png b/zh_tw/Days/Images/Day59_IAC5.png new file mode 100644 index 000000000..44c032410 Binary files /dev/null and b/zh_tw/Days/Images/Day59_IAC5.png differ diff --git a/zh_tw/Days/Images/Day59_IAC6.png b/zh_tw/Days/Images/Day59_IAC6.png new file mode 100644 index 000000000..fc2e068b7 Binary files /dev/null and b/zh_tw/Days/Images/Day59_IAC6.png differ diff --git a/zh_tw/Days/Images/Day5_DevOps8.png b/zh_tw/Days/Images/Day5_DevOps8.png new file mode 100644 index 000000000..e50100e79 Binary files /dev/null and b/zh_tw/Days/Images/Day5_DevOps8.png differ diff --git a/zh_tw/Days/Images/Day60_IAC1.png b/zh_tw/Days/Images/Day60_IAC1.png new file mode 100644 index 000000000..5103a09b4 Binary files /dev/null and b/zh_tw/Days/Images/Day60_IAC1.png differ diff --git a/zh_tw/Days/Images/Day60_IAC2.png b/zh_tw/Days/Images/Day60_IAC2.png new file mode 100644 index 000000000..3aabbf5dc Binary files /dev/null and b/zh_tw/Days/Images/Day60_IAC2.png differ diff --git a/zh_tw/Days/Images/Day60_IAC3.png b/zh_tw/Days/Images/Day60_IAC3.png new file mode 100644 index 000000000..3a6381406 Binary files /dev/null and b/zh_tw/Days/Images/Day60_IAC3.png differ diff --git a/zh_tw/Days/Images/Day60_IAC4.png b/zh_tw/Days/Images/Day60_IAC4.png new file mode 100644 index 000000000..061a540a4 Binary files /dev/null and b/zh_tw/Days/Images/Day60_IAC4.png differ diff --git a/zh_tw/Days/Images/Day60_IAC5.png b/zh_tw/Days/Images/Day60_IAC5.png new file mode 100644 index 000000000..b769eecc6 Binary files /dev/null and b/zh_tw/Days/Images/Day60_IAC5.png differ diff --git a/zh_tw/Days/Images/Day60_IAC6.png b/zh_tw/Days/Images/Day60_IAC6.png new file mode 100644 index 000000000..b9f69ce33 Binary files /dev/null and b/zh_tw/Days/Images/Day60_IAC6.png differ diff --git a/zh_tw/Days/Images/Day61_IAC1.png b/zh_tw/Days/Images/Day61_IAC1.png new file mode 100644 index 000000000..6ddade006 Binary files /dev/null and b/zh_tw/Days/Images/Day61_IAC1.png differ diff --git a/zh_tw/Days/Images/Day61_IAC2.png b/zh_tw/Days/Images/Day61_IAC2.png new file mode 100644 index 000000000..24cd95ae2 Binary files /dev/null and b/zh_tw/Days/Images/Day61_IAC2.png differ diff --git a/zh_tw/Days/Images/Day61_IAC3.png b/zh_tw/Days/Images/Day61_IAC3.png new file mode 100644 index 000000000..2f57c8e58 Binary files /dev/null and b/zh_tw/Days/Images/Day61_IAC3.png differ diff --git a/zh_tw/Days/Images/Day61_IAC4.png b/zh_tw/Days/Images/Day61_IAC4.png new file mode 100644 index 000000000..46308e9c6 Binary files /dev/null and b/zh_tw/Days/Images/Day61_IAC4.png differ diff --git a/zh_tw/Days/Images/Day61_IAC5.png b/zh_tw/Days/Images/Day61_IAC5.png new file mode 100644 index 000000000..0bbfefd94 Binary files /dev/null and b/zh_tw/Days/Images/Day61_IAC5.png differ diff --git a/zh_tw/Days/Images/Day63_config1.png b/zh_tw/Days/Images/Day63_config1.png new file mode 100644 index 000000000..b3c9d52d6 Binary files /dev/null and b/zh_tw/Days/Images/Day63_config1.png differ diff --git a/zh_tw/Days/Images/Day64_config1.png b/zh_tw/Days/Images/Day64_config1.png new file mode 100644 index 000000000..ea66b4589 Binary files /dev/null and b/zh_tw/Days/Images/Day64_config1.png differ diff --git a/zh_tw/Days/Images/Day64_config2.png b/zh_tw/Days/Images/Day64_config2.png new file mode 100644 index 000000000..a8855432b Binary files /dev/null and b/zh_tw/Days/Images/Day64_config2.png differ diff --git a/zh_tw/Days/Images/Day64_config3.png b/zh_tw/Days/Images/Day64_config3.png new file mode 100644 index 000000000..eb5ef8c9d Binary files /dev/null and b/zh_tw/Days/Images/Day64_config3.png differ diff --git a/zh_tw/Days/Images/Day64_config4.png b/zh_tw/Days/Images/Day64_config4.png new file mode 100644 index 000000000..25d317258 Binary files /dev/null and b/zh_tw/Days/Images/Day64_config4.png differ diff --git a/zh_tw/Days/Images/Day64_config5.png b/zh_tw/Days/Images/Day64_config5.png new file mode 100644 index 000000000..fe374dbd5 Binary files /dev/null and b/zh_tw/Days/Images/Day64_config5.png differ diff --git a/zh_tw/Days/Images/Day64_config6.png b/zh_tw/Days/Images/Day64_config6.png new file mode 100644 index 000000000..446a9fb01 Binary files /dev/null and b/zh_tw/Days/Images/Day64_config6.png differ diff --git a/zh_tw/Days/Images/Day64_config7.png b/zh_tw/Days/Images/Day64_config7.png new file mode 100644 index 000000000..0fcbc3b27 Binary files /dev/null and b/zh_tw/Days/Images/Day64_config7.png differ diff --git a/zh_tw/Days/Images/Day64_config8.png b/zh_tw/Days/Images/Day64_config8.png new file mode 100644 index 000000000..4e5026584 Binary files /dev/null and b/zh_tw/Days/Images/Day64_config8.png differ diff --git a/zh_tw/Days/Images/Day65_config1.png b/zh_tw/Days/Images/Day65_config1.png new file mode 100644 index 000000000..82486a40f Binary files /dev/null and b/zh_tw/Days/Images/Day65_config1.png differ diff --git a/zh_tw/Days/Images/Day65_config10.png b/zh_tw/Days/Images/Day65_config10.png new file mode 100644 index 000000000..0b1150d43 Binary files /dev/null and b/zh_tw/Days/Images/Day65_config10.png differ diff --git a/zh_tw/Days/Images/Day65_config11.png b/zh_tw/Days/Images/Day65_config11.png new file mode 100644 index 000000000..724116ea0 Binary files /dev/null and b/zh_tw/Days/Images/Day65_config11.png differ diff --git a/zh_tw/Days/Images/Day65_config2.png b/zh_tw/Days/Images/Day65_config2.png new file mode 100644 index 000000000..466e184df Binary files /dev/null and b/zh_tw/Days/Images/Day65_config2.png differ diff --git a/zh_tw/Days/Images/Day65_config3.png b/zh_tw/Days/Images/Day65_config3.png new file mode 100644 index 000000000..dbb316fa0 Binary files /dev/null and b/zh_tw/Days/Images/Day65_config3.png differ diff --git a/zh_tw/Days/Images/Day65_config4.png b/zh_tw/Days/Images/Day65_config4.png new file mode 100644 index 000000000..825975ccc Binary files /dev/null and b/zh_tw/Days/Images/Day65_config4.png differ diff --git a/zh_tw/Days/Images/Day65_config5.png b/zh_tw/Days/Images/Day65_config5.png new file mode 100644 index 000000000..e10e9edd6 Binary files /dev/null and b/zh_tw/Days/Images/Day65_config5.png differ diff --git a/zh_tw/Days/Images/Day65_config6.png b/zh_tw/Days/Images/Day65_config6.png new file mode 100644 index 000000000..01b0083e9 Binary files /dev/null and b/zh_tw/Days/Images/Day65_config6.png differ diff --git a/zh_tw/Days/Images/Day65_config7.png b/zh_tw/Days/Images/Day65_config7.png new file mode 100644 index 000000000..e67820176 Binary files /dev/null and b/zh_tw/Days/Images/Day65_config7.png differ diff --git a/zh_tw/Days/Images/Day65_config8.png b/zh_tw/Days/Images/Day65_config8.png new file mode 100644 index 000000000..2302d96e6 Binary files /dev/null and b/zh_tw/Days/Images/Day65_config8.png differ diff --git a/zh_tw/Days/Images/Day65_config9.png b/zh_tw/Days/Images/Day65_config9.png new file mode 100644 index 000000000..a59a9d17b Binary files /dev/null and b/zh_tw/Days/Images/Day65_config9.png differ diff --git a/zh_tw/Days/Images/Day66_config1.png b/zh_tw/Days/Images/Day66_config1.png new file mode 100644 index 000000000..ddb7566ad Binary files /dev/null and b/zh_tw/Days/Images/Day66_config1.png differ diff --git a/zh_tw/Days/Images/Day66_config10.png b/zh_tw/Days/Images/Day66_config10.png new file mode 100644 index 000000000..a454d03dd Binary files /dev/null and b/zh_tw/Days/Images/Day66_config10.png differ diff --git a/zh_tw/Days/Images/Day66_config2.png b/zh_tw/Days/Images/Day66_config2.png new file mode 100644 index 000000000..62f16d64a Binary files /dev/null and b/zh_tw/Days/Images/Day66_config2.png differ diff --git a/zh_tw/Days/Images/Day66_config3.png b/zh_tw/Days/Images/Day66_config3.png new file mode 100644 index 000000000..b471ef6e5 Binary files /dev/null and b/zh_tw/Days/Images/Day66_config3.png differ diff --git a/zh_tw/Days/Images/Day66_config4.png b/zh_tw/Days/Images/Day66_config4.png new file mode 100644 index 000000000..aa7989da4 Binary files /dev/null and b/zh_tw/Days/Images/Day66_config4.png differ diff --git a/zh_tw/Days/Images/Day66_config5.png b/zh_tw/Days/Images/Day66_config5.png new file mode 100644 index 000000000..020705e97 Binary files /dev/null and b/zh_tw/Days/Images/Day66_config5.png differ diff --git a/zh_tw/Days/Images/Day66_config6.png b/zh_tw/Days/Images/Day66_config6.png new file mode 100644 index 000000000..5a4b504e9 Binary files /dev/null and b/zh_tw/Days/Images/Day66_config6.png differ diff --git a/zh_tw/Days/Images/Day66_config7.png b/zh_tw/Days/Images/Day66_config7.png new file mode 100644 index 000000000..046be37cf Binary files /dev/null and b/zh_tw/Days/Images/Day66_config7.png differ diff --git a/zh_tw/Days/Images/Day66_config8.png b/zh_tw/Days/Images/Day66_config8.png new file mode 100644 index 000000000..779770506 Binary files /dev/null and b/zh_tw/Days/Images/Day66_config8.png differ diff --git a/zh_tw/Days/Images/Day66_config9.png b/zh_tw/Days/Images/Day66_config9.png new file mode 100644 index 000000000..183f957d1 Binary files /dev/null and b/zh_tw/Days/Images/Day66_config9.png differ diff --git a/zh_tw/Days/Images/Day67_config1.png b/zh_tw/Days/Images/Day67_config1.png new file mode 100644 index 000000000..ede4ff1c4 Binary files /dev/null and b/zh_tw/Days/Images/Day67_config1.png differ diff --git a/zh_tw/Days/Images/Day67_config2.png b/zh_tw/Days/Images/Day67_config2.png new file mode 100644 index 000000000..6fa2518e0 Binary files /dev/null and b/zh_tw/Days/Images/Day67_config2.png differ diff --git a/zh_tw/Days/Images/Day67_config3.png b/zh_tw/Days/Images/Day67_config3.png new file mode 100644 index 000000000..8a6fb7971 Binary files /dev/null and b/zh_tw/Days/Images/Day67_config3.png differ diff --git a/zh_tw/Days/Images/Day68_config1.png b/zh_tw/Days/Images/Day68_config1.png new file mode 100644 index 000000000..f94e61b81 Binary files /dev/null and b/zh_tw/Days/Images/Day68_config1.png differ diff --git a/zh_tw/Days/Images/Day68_config2.png b/zh_tw/Days/Images/Day68_config2.png new file mode 100644 index 000000000..d9927657f Binary files /dev/null and b/zh_tw/Days/Images/Day68_config2.png differ diff --git a/zh_tw/Days/Images/Day68_config3.png b/zh_tw/Days/Images/Day68_config3.png new file mode 100644 index 000000000..1b37a58b0 Binary files /dev/null and b/zh_tw/Days/Images/Day68_config3.png differ diff --git a/zh_tw/Days/Images/Day68_config4.png b/zh_tw/Days/Images/Day68_config4.png new file mode 100644 index 000000000..5ed98a1b0 Binary files /dev/null and b/zh_tw/Days/Images/Day68_config4.png differ diff --git a/zh_tw/Days/Images/Day68_config5.png b/zh_tw/Days/Images/Day68_config5.png new file mode 100644 index 000000000..c4347910f Binary files /dev/null and b/zh_tw/Days/Images/Day68_config5.png differ diff --git a/zh_tw/Days/Images/Day68_config6.png b/zh_tw/Days/Images/Day68_config6.png new file mode 100644 index 000000000..1c934c13c Binary files /dev/null and b/zh_tw/Days/Images/Day68_config6.png differ diff --git a/zh_tw/Days/Images/Day68_config7.png b/zh_tw/Days/Images/Day68_config7.png new file mode 100644 index 000000000..3107673d2 Binary files /dev/null and b/zh_tw/Days/Images/Day68_config7.png differ diff --git a/zh_tw/Days/Images/Day68_config8.png b/zh_tw/Days/Images/Day68_config8.png new file mode 100644 index 000000000..ea07336db Binary files /dev/null and b/zh_tw/Days/Images/Day68_config8.png differ diff --git a/zh_tw/Days/Images/Day68_config9.png b/zh_tw/Days/Images/Day68_config9.png new file mode 100644 index 000000000..a61b0cb74 Binary files /dev/null and b/zh_tw/Days/Images/Day68_config9.png differ diff --git a/zh_tw/Days/Images/Day69_config1.png b/zh_tw/Days/Images/Day69_config1.png new file mode 100644 index 000000000..3fdc8a21c Binary files /dev/null and b/zh_tw/Days/Images/Day69_config1.png differ diff --git a/zh_tw/Days/Images/Day69_config10.png b/zh_tw/Days/Images/Day69_config10.png new file mode 100644 index 000000000..1b7908e1c Binary files /dev/null and b/zh_tw/Days/Images/Day69_config10.png differ diff --git a/zh_tw/Days/Images/Day69_config2.png b/zh_tw/Days/Images/Day69_config2.png new file mode 100644 index 000000000..49117682a Binary files /dev/null and b/zh_tw/Days/Images/Day69_config2.png differ diff --git a/zh_tw/Days/Images/Day69_config3.png b/zh_tw/Days/Images/Day69_config3.png new file mode 100644 index 000000000..4667a3bfe Binary files /dev/null and b/zh_tw/Days/Images/Day69_config3.png differ diff --git a/zh_tw/Days/Images/Day69_config4.png b/zh_tw/Days/Images/Day69_config4.png new file mode 100644 index 000000000..f2f595793 Binary files /dev/null and b/zh_tw/Days/Images/Day69_config4.png differ diff --git a/zh_tw/Days/Images/Day69_config5.png b/zh_tw/Days/Images/Day69_config5.png new file mode 100644 index 000000000..af8476526 Binary files /dev/null and b/zh_tw/Days/Images/Day69_config5.png differ diff --git a/zh_tw/Days/Images/Day69_config6.png b/zh_tw/Days/Images/Day69_config6.png new file mode 100644 index 000000000..4ca79ac48 Binary files /dev/null and b/zh_tw/Days/Images/Day69_config6.png differ diff --git a/zh_tw/Days/Images/Day69_config7.png b/zh_tw/Days/Images/Day69_config7.png new file mode 100644 index 000000000..0075c3636 Binary files /dev/null and b/zh_tw/Days/Images/Day69_config7.png differ diff --git a/zh_tw/Days/Images/Day69_config8.png b/zh_tw/Days/Images/Day69_config8.png new file mode 100644 index 000000000..e9ad9c52e Binary files /dev/null and b/zh_tw/Days/Images/Day69_config8.png differ diff --git a/zh_tw/Days/Images/Day69_config9.png b/zh_tw/Days/Images/Day69_config9.png new file mode 100644 index 000000000..1f56caf73 Binary files /dev/null and b/zh_tw/Days/Images/Day69_config9.png differ diff --git a/zh_tw/Days/Images/Day70_CICD1.png b/zh_tw/Days/Images/Day70_CICD1.png new file mode 100644 index 000000000..8ddc9002d Binary files /dev/null and b/zh_tw/Days/Images/Day70_CICD1.png differ diff --git a/zh_tw/Days/Images/Day70_CICD2.png b/zh_tw/Days/Images/Day70_CICD2.png new file mode 100644 index 000000000..c638998fd Binary files /dev/null and b/zh_tw/Days/Images/Day70_CICD2.png differ diff --git a/zh_tw/Days/Images/Day70_CICD3.png b/zh_tw/Days/Images/Day70_CICD3.png new file mode 100644 index 000000000..5022bd7f8 Binary files /dev/null and b/zh_tw/Days/Images/Day70_CICD3.png differ diff --git a/zh_tw/Days/Images/Day70_CICD4.png b/zh_tw/Days/Images/Day70_CICD4.png new file mode 100644 index 000000000..ab818ce17 Binary files /dev/null and b/zh_tw/Days/Images/Day70_CICD4.png differ diff --git a/zh_tw/Days/Images/Day70_CICD5.png b/zh_tw/Days/Images/Day70_CICD5.png new file mode 100644 index 000000000..cdf2167c4 Binary files /dev/null and b/zh_tw/Days/Images/Day70_CICD5.png differ diff --git a/zh_tw/Days/Images/Day70_CICD6.png b/zh_tw/Days/Images/Day70_CICD6.png new file mode 100644 index 000000000..b4955bebd Binary files /dev/null and b/zh_tw/Days/Images/Day70_CICD6.png differ diff --git a/zh_tw/Days/Images/Day71_CICD1.png b/zh_tw/Days/Images/Day71_CICD1.png new file mode 100644 index 000000000..0b026c3e8 Binary files /dev/null and b/zh_tw/Days/Images/Day71_CICD1.png differ diff --git a/zh_tw/Days/Images/Day71_CICD2.png b/zh_tw/Days/Images/Day71_CICD2.png new file mode 100644 index 000000000..82a4ad0a8 Binary files /dev/null and b/zh_tw/Days/Images/Day71_CICD2.png differ diff --git a/zh_tw/Days/Images/Day71_CICD3.png b/zh_tw/Days/Images/Day71_CICD3.png new file mode 100644 index 000000000..8b3ec234c Binary files /dev/null and b/zh_tw/Days/Images/Day71_CICD3.png differ diff --git a/zh_tw/Days/Images/Day71_CICD4.png b/zh_tw/Days/Images/Day71_CICD4.png new file mode 100644 index 000000000..bad15fdd9 Binary files /dev/null and b/zh_tw/Days/Images/Day71_CICD4.png differ diff --git a/zh_tw/Days/Images/Day71_CICD5.png b/zh_tw/Days/Images/Day71_CICD5.png new file mode 100644 index 000000000..b84525234 Binary files /dev/null and b/zh_tw/Days/Images/Day71_CICD5.png differ diff --git a/zh_tw/Days/Images/Day72_CICD1.png b/zh_tw/Days/Images/Day72_CICD1.png new file mode 100644 index 000000000..b9df7c0a8 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD1.png differ diff --git a/zh_tw/Days/Images/Day72_CICD10.png b/zh_tw/Days/Images/Day72_CICD10.png new file mode 100644 index 000000000..f01d7288e Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD10.png differ diff --git a/zh_tw/Days/Images/Day72_CICD11.png b/zh_tw/Days/Images/Day72_CICD11.png new file mode 100644 index 000000000..459aa4077 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD11.png differ diff --git a/zh_tw/Days/Images/Day72_CICD12.png b/zh_tw/Days/Images/Day72_CICD12.png new file mode 100644 index 000000000..358a7e026 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD12.png differ diff --git a/zh_tw/Days/Images/Day72_CICD13.png b/zh_tw/Days/Images/Day72_CICD13.png new file mode 100644 index 000000000..e2992c458 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD13.png differ diff --git a/zh_tw/Days/Images/Day72_CICD14.png b/zh_tw/Days/Images/Day72_CICD14.png new file mode 100644 index 000000000..99515fd64 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD14.png differ diff --git a/zh_tw/Days/Images/Day72_CICD15.png b/zh_tw/Days/Images/Day72_CICD15.png new file mode 100644 index 000000000..3132a1f12 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD15.png differ diff --git a/zh_tw/Days/Images/Day72_CICD16.png b/zh_tw/Days/Images/Day72_CICD16.png new file mode 100644 index 000000000..bef6f2e5b Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD16.png differ diff --git a/zh_tw/Days/Images/Day72_CICD17.png b/zh_tw/Days/Images/Day72_CICD17.png new file mode 100644 index 000000000..c1b716f6e Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD17.png differ diff --git a/zh_tw/Days/Images/Day72_CICD18.png b/zh_tw/Days/Images/Day72_CICD18.png new file mode 100644 index 000000000..9656c9b5a Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD18.png differ diff --git a/zh_tw/Days/Images/Day72_CICD2.png b/zh_tw/Days/Images/Day72_CICD2.png new file mode 100644 index 000000000..629c90d72 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD2.png differ diff --git a/zh_tw/Days/Images/Day72_CICD3.png b/zh_tw/Days/Images/Day72_CICD3.png new file mode 100644 index 000000000..3fad279c0 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD3.png differ diff --git a/zh_tw/Days/Images/Day72_CICD4.png b/zh_tw/Days/Images/Day72_CICD4.png new file mode 100644 index 000000000..02ba06b10 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD4.png differ diff --git a/zh_tw/Days/Images/Day72_CICD5.png b/zh_tw/Days/Images/Day72_CICD5.png new file mode 100644 index 000000000..54d593e21 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD5.png differ diff --git a/zh_tw/Days/Images/Day72_CICD6.png b/zh_tw/Days/Images/Day72_CICD6.png new file mode 100644 index 000000000..10522a100 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD6.png differ diff --git a/zh_tw/Days/Images/Day72_CICD7.png b/zh_tw/Days/Images/Day72_CICD7.png new file mode 100644 index 000000000..4d7989556 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD7.png differ diff --git a/zh_tw/Days/Images/Day72_CICD8.png b/zh_tw/Days/Images/Day72_CICD8.png new file mode 100644 index 000000000..e81d6232c Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD8.png differ diff --git a/zh_tw/Days/Images/Day72_CICD9.png b/zh_tw/Days/Images/Day72_CICD9.png new file mode 100644 index 000000000..72ab6ce88 Binary files /dev/null and b/zh_tw/Days/Images/Day72_CICD9.png differ diff --git a/zh_tw/Days/Images/Day73_CICD1.png b/zh_tw/Days/Images/Day73_CICD1.png new file mode 100644 index 000000000..0729522a1 Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD1.png differ diff --git a/zh_tw/Days/Images/Day73_CICD10.png b/zh_tw/Days/Images/Day73_CICD10.png new file mode 100644 index 000000000..51b4a92fa Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD10.png differ diff --git a/zh_tw/Days/Images/Day73_CICD11.png b/zh_tw/Days/Images/Day73_CICD11.png new file mode 100644 index 000000000..53791b96b Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD11.png differ diff --git a/zh_tw/Days/Images/Day73_CICD12.png b/zh_tw/Days/Images/Day73_CICD12.png new file mode 100644 index 000000000..ccd6b32bb Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD12.png differ diff --git a/zh_tw/Days/Images/Day73_CICD13.png b/zh_tw/Days/Images/Day73_CICD13.png new file mode 100644 index 000000000..8fdf1f851 Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD13.png differ diff --git a/zh_tw/Days/Images/Day73_CICD14.png b/zh_tw/Days/Images/Day73_CICD14.png new file mode 100644 index 000000000..c608d33d7 Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD14.png differ diff --git a/zh_tw/Days/Images/Day73_CICD15.png b/zh_tw/Days/Images/Day73_CICD15.png new file mode 100644 index 000000000..ccc9199a4 Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD15.png differ diff --git a/zh_tw/Days/Images/Day73_CICD2.png b/zh_tw/Days/Images/Day73_CICD2.png new file mode 100644 index 000000000..a4bc678e8 Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD2.png differ diff --git a/zh_tw/Days/Images/Day73_CICD3.png b/zh_tw/Days/Images/Day73_CICD3.png new file mode 100644 index 000000000..2e60da92f Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD3.png differ diff --git a/zh_tw/Days/Images/Day73_CICD4.png b/zh_tw/Days/Images/Day73_CICD4.png new file mode 100644 index 000000000..7b858136b Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD4.png differ diff --git a/zh_tw/Days/Images/Day73_CICD5.png b/zh_tw/Days/Images/Day73_CICD5.png new file mode 100644 index 000000000..14fdf064d Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD5.png differ diff --git a/zh_tw/Days/Images/Day73_CICD6.png b/zh_tw/Days/Images/Day73_CICD6.png new file mode 100644 index 000000000..0ccf65d70 Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD6.png differ diff --git a/zh_tw/Days/Images/Day73_CICD7.png b/zh_tw/Days/Images/Day73_CICD7.png new file mode 100644 index 000000000..86b93bf0e Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD7.png differ diff --git a/zh_tw/Days/Images/Day73_CICD8.png b/zh_tw/Days/Images/Day73_CICD8.png new file mode 100644 index 000000000..2aa299537 Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD8.png differ diff --git a/zh_tw/Days/Images/Day73_CICD9.png b/zh_tw/Days/Images/Day73_CICD9.png new file mode 100644 index 000000000..d6ab2ad86 Binary files /dev/null and b/zh_tw/Days/Images/Day73_CICD9.png differ diff --git a/zh_tw/Days/Images/Day74_CICD1.png b/zh_tw/Days/Images/Day74_CICD1.png new file mode 100644 index 000000000..95bd53b24 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD1.png differ diff --git a/zh_tw/Days/Images/Day74_CICD10.png b/zh_tw/Days/Images/Day74_CICD10.png new file mode 100644 index 000000000..12ad8fdf6 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD10.png differ diff --git a/zh_tw/Days/Images/Day74_CICD11.png b/zh_tw/Days/Images/Day74_CICD11.png new file mode 100644 index 000000000..ca7bb6147 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD11.png differ diff --git a/zh_tw/Days/Images/Day74_CICD12.png b/zh_tw/Days/Images/Day74_CICD12.png new file mode 100644 index 000000000..9a1018103 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD12.png differ diff --git a/zh_tw/Days/Images/Day74_CICD2.png b/zh_tw/Days/Images/Day74_CICD2.png new file mode 100644 index 000000000..3f0641d13 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD2.png differ diff --git a/zh_tw/Days/Images/Day74_CICD3.png b/zh_tw/Days/Images/Day74_CICD3.png new file mode 100644 index 000000000..ed0fb431b Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD3.png differ diff --git a/zh_tw/Days/Images/Day74_CICD4.png b/zh_tw/Days/Images/Day74_CICD4.png new file mode 100644 index 000000000..ef7ee36d1 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD4.png differ diff --git a/zh_tw/Days/Images/Day74_CICD5.png b/zh_tw/Days/Images/Day74_CICD5.png new file mode 100644 index 000000000..90a336730 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD5.png differ diff --git a/zh_tw/Days/Images/Day74_CICD6.png b/zh_tw/Days/Images/Day74_CICD6.png new file mode 100644 index 000000000..764372b54 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD6.png differ diff --git a/zh_tw/Days/Images/Day74_CICD7.png b/zh_tw/Days/Images/Day74_CICD7.png new file mode 100644 index 000000000..730d41d61 Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD7.png differ diff --git a/zh_tw/Days/Images/Day74_CICD8.png b/zh_tw/Days/Images/Day74_CICD8.png new file mode 100644 index 000000000..890d2d6be Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD8.png differ diff --git a/zh_tw/Days/Images/Day74_CICD9.png b/zh_tw/Days/Images/Day74_CICD9.png new file mode 100644 index 000000000..59aed9def Binary files /dev/null and b/zh_tw/Days/Images/Day74_CICD9.png differ diff --git a/zh_tw/Days/Images/Day75_CICD1.png b/zh_tw/Days/Images/Day75_CICD1.png new file mode 100644 index 000000000..e7adb77f8 Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD1.png differ diff --git a/zh_tw/Days/Images/Day75_CICD10.png b/zh_tw/Days/Images/Day75_CICD10.png new file mode 100644 index 000000000..8bc640c2c Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD10.png differ diff --git a/zh_tw/Days/Images/Day75_CICD2.png b/zh_tw/Days/Images/Day75_CICD2.png new file mode 100644 index 000000000..e8eb88670 Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD2.png differ diff --git a/zh_tw/Days/Images/Day75_CICD3.png b/zh_tw/Days/Images/Day75_CICD3.png new file mode 100644 index 000000000..2f9240e72 Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD3.png differ diff --git a/zh_tw/Days/Images/Day75_CICD4.png b/zh_tw/Days/Images/Day75_CICD4.png new file mode 100644 index 000000000..7bca29bdd Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD4.png differ diff --git a/zh_tw/Days/Images/Day75_CICD5.png b/zh_tw/Days/Images/Day75_CICD5.png new file mode 100644 index 000000000..0c7d70d4f Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD5.png differ diff --git a/zh_tw/Days/Images/Day75_CICD6.png b/zh_tw/Days/Images/Day75_CICD6.png new file mode 100644 index 000000000..51108cc36 Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD6.png differ diff --git a/zh_tw/Days/Images/Day75_CICD7.png b/zh_tw/Days/Images/Day75_CICD7.png new file mode 100644 index 000000000..575bcc970 Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD7.png differ diff --git a/zh_tw/Days/Images/Day75_CICD8.png b/zh_tw/Days/Images/Day75_CICD8.png new file mode 100644 index 000000000..bdcad5bfc Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD8.png differ diff --git a/zh_tw/Days/Images/Day75_CICD9.png b/zh_tw/Days/Images/Day75_CICD9.png new file mode 100644 index 000000000..1fd451587 Binary files /dev/null and b/zh_tw/Days/Images/Day75_CICD9.png differ diff --git a/zh_tw/Days/Images/Day76_CICD1.png b/zh_tw/Days/Images/Day76_CICD1.png new file mode 100644 index 000000000..849c681fb Binary files /dev/null and b/zh_tw/Days/Images/Day76_CICD1.png differ diff --git a/zh_tw/Days/Images/Day76_CICD2.png b/zh_tw/Days/Images/Day76_CICD2.png new file mode 100644 index 000000000..e7bd4a1a2 Binary files /dev/null and b/zh_tw/Days/Images/Day76_CICD2.png differ diff --git a/zh_tw/Days/Images/Day76_CICD3.png b/zh_tw/Days/Images/Day76_CICD3.png new file mode 100644 index 000000000..f6af33a16 Binary files /dev/null and b/zh_tw/Days/Images/Day76_CICD3.png differ diff --git a/zh_tw/Days/Images/Day76_CICD4.png b/zh_tw/Days/Images/Day76_CICD4.png new file mode 100644 index 000000000..b4107ca19 Binary files /dev/null and b/zh_tw/Days/Images/Day76_CICD4.png differ diff --git a/zh_tw/Days/Images/Day76_CICD5.png b/zh_tw/Days/Images/Day76_CICD5.png new file mode 100644 index 000000000..e17fe3cc3 Binary files /dev/null and b/zh_tw/Days/Images/Day76_CICD5.png differ diff --git a/zh_tw/Days/Images/Day76_CICD6.png b/zh_tw/Days/Images/Day76_CICD6.png new file mode 100644 index 000000000..f47d87b7a Binary files /dev/null and b/zh_tw/Days/Images/Day76_CICD6.png differ diff --git a/zh_tw/Days/Images/Day77_Monitoring1.png b/zh_tw/Days/Images/Day77_Monitoring1.png new file mode 100644 index 000000000..00f4abb3e Binary files /dev/null and b/zh_tw/Days/Images/Day77_Monitoring1.png differ diff --git a/zh_tw/Days/Images/Day77_Monitoring2.png b/zh_tw/Days/Images/Day77_Monitoring2.png new file mode 100644 index 000000000..c42adaf5e Binary files /dev/null and b/zh_tw/Days/Images/Day77_Monitoring2.png differ diff --git a/zh_tw/Days/Images/Day77_Monitoring3.png b/zh_tw/Days/Images/Day77_Monitoring3.png new file mode 100644 index 000000000..3ab8655d9 Binary files /dev/null and b/zh_tw/Days/Images/Day77_Monitoring3.png differ diff --git a/zh_tw/Days/Images/Day78_Monitoring1.png b/zh_tw/Days/Images/Day78_Monitoring1.png new file mode 100644 index 000000000..a2edc052e Binary files /dev/null and b/zh_tw/Days/Images/Day78_Monitoring1.png differ diff --git a/zh_tw/Days/Images/Day78_Monitoring2.png b/zh_tw/Days/Images/Day78_Monitoring2.png new file mode 100644 index 000000000..6050eb92a Binary files /dev/null and b/zh_tw/Days/Images/Day78_Monitoring2.png differ diff --git a/zh_tw/Days/Images/Day78_Monitoring3.png b/zh_tw/Days/Images/Day78_Monitoring3.png new file mode 100644 index 000000000..43b446958 Binary files /dev/null and b/zh_tw/Days/Images/Day78_Monitoring3.png differ diff --git a/zh_tw/Days/Images/Day78_Monitoring4.png b/zh_tw/Days/Images/Day78_Monitoring4.png new file mode 100644 index 000000000..dbf41018b Binary files /dev/null and b/zh_tw/Days/Images/Day78_Monitoring4.png differ diff --git a/zh_tw/Days/Images/Day78_Monitoring5.png b/zh_tw/Days/Images/Day78_Monitoring5.png new file mode 100644 index 000000000..67cb07e37 Binary files /dev/null and b/zh_tw/Days/Images/Day78_Monitoring5.png differ diff --git a/zh_tw/Days/Images/Day78_Monitoring6.png b/zh_tw/Days/Images/Day78_Monitoring6.png new file mode 100644 index 000000000..bf60736f4 Binary files /dev/null and b/zh_tw/Days/Images/Day78_Monitoring6.png differ diff --git a/zh_tw/Days/Images/Day80_Monitoring1.png b/zh_tw/Days/Images/Day80_Monitoring1.png new file mode 100644 index 000000000..83bbb1f96 Binary files /dev/null and b/zh_tw/Days/Images/Day80_Monitoring1.png differ diff --git a/zh_tw/Days/Images/Day80_Monitoring2.png b/zh_tw/Days/Images/Day80_Monitoring2.png new file mode 100644 index 000000000..4ed642ae3 Binary files /dev/null and b/zh_tw/Days/Images/Day80_Monitoring2.png differ diff --git a/zh_tw/Days/Images/Day80_Monitoring3.png b/zh_tw/Days/Images/Day80_Monitoring3.png new file mode 100644 index 000000000..4e249cde9 Binary files /dev/null and b/zh_tw/Days/Images/Day80_Monitoring3.png differ diff --git a/zh_tw/Days/Images/Day80_Monitoring4.png b/zh_tw/Days/Images/Day80_Monitoring4.png new file mode 100644 index 000000000..c433bbb4d Binary files /dev/null and b/zh_tw/Days/Images/Day80_Monitoring4.png differ diff --git a/zh_tw/Days/Images/Day80_Monitoring5.png b/zh_tw/Days/Images/Day80_Monitoring5.png new file mode 100644 index 000000000..19f35d631 Binary files /dev/null and b/zh_tw/Days/Images/Day80_Monitoring5.png differ diff --git a/zh_tw/Days/Images/Day80_Monitoring6.png b/zh_tw/Days/Images/Day80_Monitoring6.png new file mode 100644 index 000000000..62c7b4a3f Binary files /dev/null and b/zh_tw/Days/Images/Day80_Monitoring6.png differ diff --git a/zh_tw/Days/Images/Day80_Monitoring7.png b/zh_tw/Days/Images/Day80_Monitoring7.png new file mode 100644 index 000000000..ad7d7042e Binary files /dev/null and b/zh_tw/Days/Images/Day80_Monitoring7.png differ diff --git a/zh_tw/Days/Images/Day81_Monitoring1.png b/zh_tw/Days/Images/Day81_Monitoring1.png new file mode 100644 index 000000000..605247807 Binary files /dev/null and b/zh_tw/Days/Images/Day81_Monitoring1.png differ diff --git a/zh_tw/Days/Images/Day81_Monitoring2.png b/zh_tw/Days/Images/Day81_Monitoring2.png new file mode 100644 index 000000000..4027da06e Binary files /dev/null and b/zh_tw/Days/Images/Day81_Monitoring2.png differ diff --git a/zh_tw/Days/Images/Day81_Monitoring3.png b/zh_tw/Days/Images/Day81_Monitoring3.png new file mode 100644 index 000000000..1f828ed25 Binary files /dev/null and b/zh_tw/Days/Images/Day81_Monitoring3.png differ diff --git a/zh_tw/Days/Images/Day81_Monitoring4.png b/zh_tw/Days/Images/Day81_Monitoring4.png new file mode 100644 index 000000000..6966427e4 Binary files /dev/null and b/zh_tw/Days/Images/Day81_Monitoring4.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring1.png b/zh_tw/Days/Images/Day82_Monitoring1.png new file mode 100644 index 000000000..f72eb89d0 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring1.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring10.png b/zh_tw/Days/Images/Day82_Monitoring10.png new file mode 100644 index 000000000..eee18fe34 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring10.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring11.png b/zh_tw/Days/Images/Day82_Monitoring11.png new file mode 100644 index 000000000..994e64951 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring11.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring12.png b/zh_tw/Days/Images/Day82_Monitoring12.png new file mode 100644 index 000000000..4b3eba45b Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring12.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring13.png b/zh_tw/Days/Images/Day82_Monitoring13.png new file mode 100644 index 000000000..b2e0069e4 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring13.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring2.png b/zh_tw/Days/Images/Day82_Monitoring2.png new file mode 100644 index 000000000..b93b83420 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring2.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring3.png b/zh_tw/Days/Images/Day82_Monitoring3.png new file mode 100644 index 000000000..78e539477 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring3.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring4.png b/zh_tw/Days/Images/Day82_Monitoring4.png new file mode 100644 index 000000000..9fabd1ac4 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring4.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring5.png b/zh_tw/Days/Images/Day82_Monitoring5.png new file mode 100644 index 000000000..af9b2d226 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring5.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring6.png b/zh_tw/Days/Images/Day82_Monitoring6.png new file mode 100644 index 000000000..9591c1416 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring6.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring7.png b/zh_tw/Days/Images/Day82_Monitoring7.png new file mode 100644 index 000000000..7dc4b0873 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring7.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring8.png b/zh_tw/Days/Images/Day82_Monitoring8.png new file mode 100644 index 000000000..e0e2856a6 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring8.png differ diff --git a/zh_tw/Days/Images/Day82_Monitoring9.png b/zh_tw/Days/Images/Day82_Monitoring9.png new file mode 100644 index 000000000..b75aae3e7 Binary files /dev/null and b/zh_tw/Days/Images/Day82_Monitoring9.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring1.png b/zh_tw/Days/Images/Day83_Monitoring1.png new file mode 100644 index 000000000..8e9f23473 Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring1.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring10.png b/zh_tw/Days/Images/Day83_Monitoring10.png new file mode 100644 index 000000000..3a8d582be Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring10.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring11.png b/zh_tw/Days/Images/Day83_Monitoring11.png new file mode 100644 index 000000000..8e917b397 Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring11.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring12.png b/zh_tw/Days/Images/Day83_Monitoring12.png new file mode 100644 index 000000000..ac271f562 Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring12.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring13.png b/zh_tw/Days/Images/Day83_Monitoring13.png new file mode 100644 index 000000000..ba700063a Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring13.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring14.png b/zh_tw/Days/Images/Day83_Monitoring14.png new file mode 100644 index 000000000..00d8aff0a Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring14.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring15.png b/zh_tw/Days/Images/Day83_Monitoring15.png new file mode 100644 index 000000000..8d1e8ef1f Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring15.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring16.png b/zh_tw/Days/Images/Day83_Monitoring16.png new file mode 100644 index 000000000..6c394c09f Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring16.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring17.png b/zh_tw/Days/Images/Day83_Monitoring17.png new file mode 100644 index 000000000..e063fafca Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring17.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring18.png b/zh_tw/Days/Images/Day83_Monitoring18.png new file mode 100644 index 000000000..2a8d4cc5f Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring18.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring19.png b/zh_tw/Days/Images/Day83_Monitoring19.png new file mode 100644 index 000000000..965d06ecf Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring19.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring2.png b/zh_tw/Days/Images/Day83_Monitoring2.png new file mode 100644 index 000000000..9faa0f149 Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring2.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring20.png b/zh_tw/Days/Images/Day83_Monitoring20.png new file mode 100644 index 000000000..9fdb669af Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring20.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring21.png b/zh_tw/Days/Images/Day83_Monitoring21.png new file mode 100644 index 000000000..2c959c16c Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring21.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring3.png b/zh_tw/Days/Images/Day83_Monitoring3.png new file mode 100644 index 000000000..bc314eaa4 Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring3.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring4.png b/zh_tw/Days/Images/Day83_Monitoring4.png new file mode 100644 index 000000000..cd47f0ce5 Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring4.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring5.png b/zh_tw/Days/Images/Day83_Monitoring5.png new file mode 100644 index 000000000..bc8ddf61c Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring5.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring6.png b/zh_tw/Days/Images/Day83_Monitoring6.png new file mode 100644 index 000000000..cdcc5ac1f Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring6.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring7.png b/zh_tw/Days/Images/Day83_Monitoring7.png new file mode 100644 index 000000000..d8cfe074a Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring7.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring8.png b/zh_tw/Days/Images/Day83_Monitoring8.png new file mode 100644 index 000000000..550db5e55 Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring8.png differ diff --git a/zh_tw/Days/Images/Day83_Monitoring9.png b/zh_tw/Days/Images/Day83_Monitoring9.png new file mode 100644 index 000000000..f2b611e75 Binary files /dev/null and b/zh_tw/Days/Images/Day83_Monitoring9.png differ diff --git a/zh_tw/Days/Images/Day84_Data1.png b/zh_tw/Days/Images/Day84_Data1.png new file mode 100644 index 000000000..78fff6825 Binary files /dev/null and b/zh_tw/Days/Images/Day84_Data1.png differ diff --git a/zh_tw/Days/Images/Day85_Data1.png b/zh_tw/Days/Images/Day85_Data1.png new file mode 100644 index 000000000..f536d1a0d Binary files /dev/null and b/zh_tw/Days/Images/Day85_Data1.png differ diff --git a/zh_tw/Days/Images/Day85_Data2.png b/zh_tw/Days/Images/Day85_Data2.png new file mode 100644 index 000000000..00bf2d369 Binary files /dev/null and b/zh_tw/Days/Images/Day85_Data2.png differ diff --git a/zh_tw/Days/Images/Day85_Data3.png b/zh_tw/Days/Images/Day85_Data3.png new file mode 100644 index 000000000..c82d4f9d6 Binary files /dev/null and b/zh_tw/Days/Images/Day85_Data3.png differ diff --git a/zh_tw/Days/Images/Day85_Data4.png b/zh_tw/Days/Images/Day85_Data4.png new file mode 100644 index 000000000..6126e9aff Binary files /dev/null and b/zh_tw/Days/Images/Day85_Data4.png differ diff --git a/zh_tw/Days/Images/Day86_Data1.png b/zh_tw/Days/Images/Day86_Data1.png new file mode 100644 index 000000000..1ea94bc36 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data1.png differ diff --git a/zh_tw/Days/Images/Day86_Data10.png b/zh_tw/Days/Images/Day86_Data10.png new file mode 100644 index 000000000..6db351cca Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data10.png differ diff --git a/zh_tw/Days/Images/Day86_Data11.png b/zh_tw/Days/Images/Day86_Data11.png new file mode 100644 index 000000000..9411904ae Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data11.png differ diff --git a/zh_tw/Days/Images/Day86_Data12.png b/zh_tw/Days/Images/Day86_Data12.png new file mode 100644 index 000000000..3a43ba0c3 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data12.png differ diff --git a/zh_tw/Days/Images/Day86_Data13.png b/zh_tw/Days/Images/Day86_Data13.png new file mode 100644 index 000000000..e102fefd3 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data13.png differ diff --git a/zh_tw/Days/Images/Day86_Data14.png b/zh_tw/Days/Images/Day86_Data14.png new file mode 100644 index 000000000..d08ef13df Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data14.png differ diff --git a/zh_tw/Days/Images/Day86_Data15.png b/zh_tw/Days/Images/Day86_Data15.png new file mode 100644 index 000000000..0439899a5 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data15.png differ diff --git a/zh_tw/Days/Images/Day86_Data16.png b/zh_tw/Days/Images/Day86_Data16.png new file mode 100644 index 000000000..87d2ba9f0 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data16.png differ diff --git a/zh_tw/Days/Images/Day86_Data17.png b/zh_tw/Days/Images/Day86_Data17.png new file mode 100644 index 000000000..00d0d52b9 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data17.png differ diff --git a/zh_tw/Days/Images/Day86_Data18.png b/zh_tw/Days/Images/Day86_Data18.png new file mode 100644 index 000000000..1fb1f795b Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data18.png differ diff --git a/zh_tw/Days/Images/Day86_Data19.png b/zh_tw/Days/Images/Day86_Data19.png new file mode 100644 index 000000000..595e0f78a Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data19.png differ diff --git a/zh_tw/Days/Images/Day86_Data2.png b/zh_tw/Days/Images/Day86_Data2.png new file mode 100644 index 000000000..adbf58297 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data2.png differ diff --git a/zh_tw/Days/Images/Day86_Data20.png b/zh_tw/Days/Images/Day86_Data20.png new file mode 100644 index 000000000..69a20a9e6 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data20.png differ diff --git a/zh_tw/Days/Images/Day86_Data21.png b/zh_tw/Days/Images/Day86_Data21.png new file mode 100644 index 000000000..9ffef78a0 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data21.png differ diff --git a/zh_tw/Days/Images/Day86_Data22.png b/zh_tw/Days/Images/Day86_Data22.png new file mode 100644 index 000000000..74cb046be Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data22.png differ diff --git a/zh_tw/Days/Images/Day86_Data3.png b/zh_tw/Days/Images/Day86_Data3.png new file mode 100644 index 000000000..db3863357 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data3.png differ diff --git a/zh_tw/Days/Images/Day86_Data4.png b/zh_tw/Days/Images/Day86_Data4.png new file mode 100644 index 000000000..b4f025eda Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data4.png differ diff --git a/zh_tw/Days/Images/Day86_Data5.png b/zh_tw/Days/Images/Day86_Data5.png new file mode 100644 index 000000000..cb428c77d Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data5.png differ diff --git a/zh_tw/Days/Images/Day86_Data6.png b/zh_tw/Days/Images/Day86_Data6.png new file mode 100644 index 000000000..fccf2c806 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data6.png differ diff --git a/zh_tw/Days/Images/Day86_Data7.png b/zh_tw/Days/Images/Day86_Data7.png new file mode 100644 index 000000000..7a44e08de Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data7.png differ diff --git a/zh_tw/Days/Images/Day86_Data8.png b/zh_tw/Days/Images/Day86_Data8.png new file mode 100644 index 000000000..57caabdb7 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data8.png differ diff --git a/zh_tw/Days/Images/Day86_Data9.png b/zh_tw/Days/Images/Day86_Data9.png new file mode 100644 index 000000000..e686bced2 Binary files /dev/null and b/zh_tw/Days/Images/Day86_Data9.png differ diff --git a/zh_tw/Days/Images/Day87_Data1.png b/zh_tw/Days/Images/Day87_Data1.png new file mode 100644 index 000000000..478946270 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data1.png differ diff --git a/zh_tw/Days/Images/Day87_Data10.png b/zh_tw/Days/Images/Day87_Data10.png new file mode 100644 index 000000000..19f14e05d Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data10.png differ diff --git a/zh_tw/Days/Images/Day87_Data11.png b/zh_tw/Days/Images/Day87_Data11.png new file mode 100644 index 000000000..92eb707c1 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data11.png differ diff --git a/zh_tw/Days/Images/Day87_Data12.png b/zh_tw/Days/Images/Day87_Data12.png new file mode 100644 index 000000000..51653c1c1 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data12.png differ diff --git a/zh_tw/Days/Images/Day87_Data13.png b/zh_tw/Days/Images/Day87_Data13.png new file mode 100644 index 000000000..ff5e99457 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data13.png differ diff --git a/zh_tw/Days/Images/Day87_Data14.png b/zh_tw/Days/Images/Day87_Data14.png new file mode 100644 index 000000000..b41fc93c4 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data14.png differ diff --git a/zh_tw/Days/Images/Day87_Data15.png b/zh_tw/Days/Images/Day87_Data15.png new file mode 100644 index 000000000..7481311dd Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data15.png differ diff --git a/zh_tw/Days/Images/Day87_Data16.png b/zh_tw/Days/Images/Day87_Data16.png new file mode 100644 index 000000000..f07f6de42 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data16.png differ diff --git a/zh_tw/Days/Images/Day87_Data17.png b/zh_tw/Days/Images/Day87_Data17.png new file mode 100644 index 000000000..45742cbbe Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data17.png differ diff --git a/zh_tw/Days/Images/Day87_Data18.png b/zh_tw/Days/Images/Day87_Data18.png new file mode 100644 index 000000000..e5a44998c Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data18.png differ diff --git a/zh_tw/Days/Images/Day87_Data19.png b/zh_tw/Days/Images/Day87_Data19.png new file mode 100644 index 000000000..afe525ca6 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data19.png differ diff --git a/zh_tw/Days/Images/Day87_Data2.png b/zh_tw/Days/Images/Day87_Data2.png new file mode 100644 index 000000000..89d183f4b Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data2.png differ diff --git a/zh_tw/Days/Images/Day87_Data20.png b/zh_tw/Days/Images/Day87_Data20.png new file mode 100644 index 000000000..93dccf017 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data20.png differ diff --git a/zh_tw/Days/Images/Day87_Data21.png b/zh_tw/Days/Images/Day87_Data21.png new file mode 100644 index 000000000..60dc8e30d Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data21.png differ diff --git a/zh_tw/Days/Images/Day87_Data22.png b/zh_tw/Days/Images/Day87_Data22.png new file mode 100644 index 000000000..b9de77354 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data22.png differ diff --git a/zh_tw/Days/Images/Day87_Data23.png b/zh_tw/Days/Images/Day87_Data23.png new file mode 100644 index 000000000..45051c8b3 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data23.png differ diff --git a/zh_tw/Days/Images/Day87_Data3.png b/zh_tw/Days/Images/Day87_Data3.png new file mode 100644 index 000000000..7b1b2ef04 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data3.png differ diff --git a/zh_tw/Days/Images/Day87_Data4.png b/zh_tw/Days/Images/Day87_Data4.png new file mode 100644 index 000000000..8e4438f63 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data4.png differ diff --git a/zh_tw/Days/Images/Day87_Data5.png b/zh_tw/Days/Images/Day87_Data5.png new file mode 100644 index 000000000..2326b61c7 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data5.png differ diff --git a/zh_tw/Days/Images/Day87_Data6.png b/zh_tw/Days/Images/Day87_Data6.png new file mode 100644 index 000000000..847023044 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data6.png differ diff --git a/zh_tw/Days/Images/Day87_Data7.png b/zh_tw/Days/Images/Day87_Data7.png new file mode 100644 index 000000000..56ac77eb6 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data7.png differ diff --git a/zh_tw/Days/Images/Day87_Data8.png b/zh_tw/Days/Images/Day87_Data8.png new file mode 100644 index 000000000..2b4c07171 Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data8.png differ diff --git a/zh_tw/Days/Images/Day87_Data9.png b/zh_tw/Days/Images/Day87_Data9.png new file mode 100644 index 000000000..f9e991c6b Binary files /dev/null and b/zh_tw/Days/Images/Day87_Data9.png differ diff --git a/zh_tw/Days/Images/Day88_Data1.png b/zh_tw/Days/Images/Day88_Data1.png new file mode 100644 index 000000000..d315af2b9 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data1.png differ diff --git a/zh_tw/Days/Images/Day88_Data10.png b/zh_tw/Days/Images/Day88_Data10.png new file mode 100644 index 000000000..225d4d1c5 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data10.png differ diff --git a/zh_tw/Days/Images/Day88_Data11.png b/zh_tw/Days/Images/Day88_Data11.png new file mode 100644 index 000000000..fd5460e44 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data11.png differ diff --git a/zh_tw/Days/Images/Day88_Data12.png b/zh_tw/Days/Images/Day88_Data12.png new file mode 100644 index 000000000..8a945ef18 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data12.png differ diff --git a/zh_tw/Days/Images/Day88_Data13.png b/zh_tw/Days/Images/Day88_Data13.png new file mode 100644 index 000000000..77b427d13 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data13.png differ diff --git a/zh_tw/Days/Images/Day88_Data14.png b/zh_tw/Days/Images/Day88_Data14.png new file mode 100644 index 000000000..1c2077b44 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data14.png differ diff --git a/zh_tw/Days/Images/Day88_Data15.png b/zh_tw/Days/Images/Day88_Data15.png new file mode 100644 index 000000000..294607bc5 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data15.png differ diff --git a/zh_tw/Days/Images/Day88_Data16.png b/zh_tw/Days/Images/Day88_Data16.png new file mode 100644 index 000000000..c5d10fe43 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data16.png differ diff --git a/zh_tw/Days/Images/Day88_Data17.png b/zh_tw/Days/Images/Day88_Data17.png new file mode 100644 index 000000000..be078ddfd Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data17.png differ diff --git a/zh_tw/Days/Images/Day88_Data2.png b/zh_tw/Days/Images/Day88_Data2.png new file mode 100644 index 000000000..2f3dd0d13 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data2.png differ diff --git a/zh_tw/Days/Images/Day88_Data3.png b/zh_tw/Days/Images/Day88_Data3.png new file mode 100644 index 000000000..f6285e835 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data3.png differ diff --git a/zh_tw/Days/Images/Day88_Data4.png b/zh_tw/Days/Images/Day88_Data4.png new file mode 100644 index 000000000..69510d823 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data4.png differ diff --git a/zh_tw/Days/Images/Day88_Data5.png b/zh_tw/Days/Images/Day88_Data5.png new file mode 100644 index 000000000..ffbaeaa33 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data5.png differ diff --git a/zh_tw/Days/Images/Day88_Data6.png b/zh_tw/Days/Images/Day88_Data6.png new file mode 100644 index 000000000..a5f8d605f Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data6.png differ diff --git a/zh_tw/Days/Images/Day88_Data7.png b/zh_tw/Days/Images/Day88_Data7.png new file mode 100644 index 000000000..df00fd64d Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data7.png differ diff --git a/zh_tw/Days/Images/Day88_Data8.png b/zh_tw/Days/Images/Day88_Data8.png new file mode 100644 index 000000000..301d9d648 Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data8.png differ diff --git a/zh_tw/Days/Images/Day88_Data9.png b/zh_tw/Days/Images/Day88_Data9.png new file mode 100644 index 000000000..afeeb5bbd Binary files /dev/null and b/zh_tw/Days/Images/Day88_Data9.png differ diff --git a/zh_tw/Days/Images/Day89_Data1.png b/zh_tw/Days/Images/Day89_Data1.png new file mode 100644 index 000000000..d399eee41 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data1.png differ diff --git a/zh_tw/Days/Images/Day89_Data10.png b/zh_tw/Days/Images/Day89_Data10.png new file mode 100644 index 000000000..498cce6a0 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data10.png differ diff --git a/zh_tw/Days/Images/Day89_Data11.png b/zh_tw/Days/Images/Day89_Data11.png new file mode 100644 index 000000000..239c7f5b9 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data11.png differ diff --git a/zh_tw/Days/Images/Day89_Data12.png b/zh_tw/Days/Images/Day89_Data12.png new file mode 100644 index 000000000..59b1d8260 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data12.png differ diff --git a/zh_tw/Days/Images/Day89_Data13.png b/zh_tw/Days/Images/Day89_Data13.png new file mode 100644 index 000000000..6b0e20114 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data13.png differ diff --git a/zh_tw/Days/Images/Day89_Data14.png b/zh_tw/Days/Images/Day89_Data14.png new file mode 100644 index 000000000..48db39bcc Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data14.png differ diff --git a/zh_tw/Days/Images/Day89_Data15.png b/zh_tw/Days/Images/Day89_Data15.png new file mode 100644 index 000000000..dc49b04c8 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data15.png differ diff --git a/zh_tw/Days/Images/Day89_Data16.png b/zh_tw/Days/Images/Day89_Data16.png new file mode 100644 index 000000000..ac6c13b29 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data16.png differ diff --git a/zh_tw/Days/Images/Day89_Data17.png b/zh_tw/Days/Images/Day89_Data17.png new file mode 100644 index 000000000..3ca572abf Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data17.png differ diff --git a/zh_tw/Days/Images/Day89_Data18.png b/zh_tw/Days/Images/Day89_Data18.png new file mode 100644 index 000000000..e67834da3 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data18.png differ diff --git a/zh_tw/Days/Images/Day89_Data19.png b/zh_tw/Days/Images/Day89_Data19.png new file mode 100644 index 000000000..47294650c Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data19.png differ diff --git a/zh_tw/Days/Images/Day89_Data2.png b/zh_tw/Days/Images/Day89_Data2.png new file mode 100644 index 000000000..1d25b538a Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data2.png differ diff --git a/zh_tw/Days/Images/Day89_Data20.png b/zh_tw/Days/Images/Day89_Data20.png new file mode 100644 index 000000000..1b4344503 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data20.png differ diff --git a/zh_tw/Days/Images/Day89_Data21.png b/zh_tw/Days/Images/Day89_Data21.png new file mode 100644 index 000000000..424361860 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data21.png differ diff --git a/zh_tw/Days/Images/Day89_Data22.png b/zh_tw/Days/Images/Day89_Data22.png new file mode 100644 index 000000000..cbbef8eaf Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data22.png differ diff --git a/zh_tw/Days/Images/Day89_Data23.png b/zh_tw/Days/Images/Day89_Data23.png new file mode 100644 index 000000000..bc1d89a9f Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data23.png differ diff --git a/zh_tw/Days/Images/Day89_Data24.png b/zh_tw/Days/Images/Day89_Data24.png new file mode 100644 index 000000000..96107a3cd Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data24.png differ diff --git a/zh_tw/Days/Images/Day89_Data25.png b/zh_tw/Days/Images/Day89_Data25.png new file mode 100644 index 000000000..9ae633ae7 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data25.png differ diff --git a/zh_tw/Days/Images/Day89_Data26.png b/zh_tw/Days/Images/Day89_Data26.png new file mode 100644 index 000000000..c9ee6eb5f Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data26.png differ diff --git a/zh_tw/Days/Images/Day89_Data3.png b/zh_tw/Days/Images/Day89_Data3.png new file mode 100644 index 000000000..a5a0f853d Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data3.png differ diff --git a/zh_tw/Days/Images/Day89_Data4.png b/zh_tw/Days/Images/Day89_Data4.png new file mode 100644 index 000000000..6df47316a Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data4.png differ diff --git a/zh_tw/Days/Images/Day89_Data5.png b/zh_tw/Days/Images/Day89_Data5.png new file mode 100644 index 000000000..3d305c8e6 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data5.png differ diff --git a/zh_tw/Days/Images/Day89_Data6.png b/zh_tw/Days/Images/Day89_Data6.png new file mode 100644 index 000000000..d9b3f15b3 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data6.png differ diff --git a/zh_tw/Days/Images/Day89_Data7.png b/zh_tw/Days/Images/Day89_Data7.png new file mode 100644 index 000000000..1c8766259 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data7.png differ diff --git a/zh_tw/Days/Images/Day89_Data8.png b/zh_tw/Days/Images/Day89_Data8.png new file mode 100644 index 000000000..af1df01b2 Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data8.png differ diff --git a/zh_tw/Days/Images/Day89_Data9.png b/zh_tw/Days/Images/Day89_Data9.png new file mode 100644 index 000000000..4b76ed8fb Binary files /dev/null and b/zh_tw/Days/Images/Day89_Data9.png differ diff --git a/zh_tw/Days/Images/Day8_Go1.png b/zh_tw/Days/Images/Day8_Go1.png new file mode 100644 index 000000000..81042a10d Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go1.png differ diff --git a/zh_tw/Days/Images/Day8_Go10.png b/zh_tw/Days/Images/Day8_Go10.png new file mode 100644 index 000000000..60a026d25 Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go10.png differ diff --git a/zh_tw/Days/Images/Day8_Go11.png b/zh_tw/Days/Images/Day8_Go11.png new file mode 100644 index 000000000..4c14b8ad8 Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go11.png differ diff --git a/zh_tw/Days/Images/Day8_Go12.png b/zh_tw/Days/Images/Day8_Go12.png new file mode 100644 index 000000000..c3c15290c Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go12.png differ diff --git a/zh_tw/Days/Images/Day8_Go13.png b/zh_tw/Days/Images/Day8_Go13.png new file mode 100644 index 000000000..e467a69bb Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go13.png differ diff --git a/zh_tw/Days/Images/Day8_Go2.png b/zh_tw/Days/Images/Day8_Go2.png new file mode 100644 index 000000000..251583f05 Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go2.png differ diff --git a/zh_tw/Days/Images/Day8_Go3.png b/zh_tw/Days/Images/Day8_Go3.png new file mode 100644 index 000000000..7118aa10f Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go3.png differ diff --git a/zh_tw/Days/Images/Day8_Go4.png b/zh_tw/Days/Images/Day8_Go4.png new file mode 100644 index 000000000..c8b2e380a Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go4.png differ diff --git a/zh_tw/Days/Images/Day8_Go5.png b/zh_tw/Days/Images/Day8_Go5.png new file mode 100644 index 000000000..9c3f3b5b7 Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go5.png differ diff --git a/zh_tw/Days/Images/Day8_Go6.png b/zh_tw/Days/Images/Day8_Go6.png new file mode 100644 index 000000000..3f63ba4bc Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go6.png differ diff --git a/zh_tw/Days/Images/Day8_Go7.png b/zh_tw/Days/Images/Day8_Go7.png new file mode 100644 index 000000000..e9e9299d4 Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go7.png differ diff --git a/zh_tw/Days/Images/Day8_Go8.png b/zh_tw/Days/Images/Day8_Go8.png new file mode 100644 index 000000000..0f1b24cf1 Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go8.png differ diff --git a/zh_tw/Days/Images/Day8_Go9.png b/zh_tw/Days/Images/Day8_Go9.png new file mode 100644 index 000000000..73ff3d8d1 Binary files /dev/null and b/zh_tw/Days/Images/Day8_Go9.png differ diff --git a/zh_tw/Days/Images/Day90_Data1.png b/zh_tw/Days/Images/Day90_Data1.png new file mode 100644 index 000000000..df9c47f53 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data1.png differ diff --git a/zh_tw/Days/Images/Day90_Data10.png b/zh_tw/Days/Images/Day90_Data10.png new file mode 100644 index 000000000..80e1f7df5 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data10.png differ diff --git a/zh_tw/Days/Images/Day90_Data11.png b/zh_tw/Days/Images/Day90_Data11.png new file mode 100644 index 000000000..5b200c091 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data11.png differ diff --git a/zh_tw/Days/Images/Day90_Data12.png b/zh_tw/Days/Images/Day90_Data12.png new file mode 100644 index 000000000..f41f80fe5 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data12.png differ diff --git a/zh_tw/Days/Images/Day90_Data13.png b/zh_tw/Days/Images/Day90_Data13.png new file mode 100644 index 000000000..cda286668 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data13.png differ diff --git a/zh_tw/Days/Images/Day90_Data2.png b/zh_tw/Days/Images/Day90_Data2.png new file mode 100644 index 000000000..46b337f9a Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data2.png differ diff --git a/zh_tw/Days/Images/Day90_Data3.png b/zh_tw/Days/Images/Day90_Data3.png new file mode 100644 index 000000000..242de61d6 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data3.png differ diff --git a/zh_tw/Days/Images/Day90_Data4.png b/zh_tw/Days/Images/Day90_Data4.png new file mode 100644 index 000000000..5475e0ed0 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data4.png differ diff --git a/zh_tw/Days/Images/Day90_Data5.png b/zh_tw/Days/Images/Day90_Data5.png new file mode 100644 index 000000000..5bc6023b2 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data5.png differ diff --git a/zh_tw/Days/Images/Day90_Data6.png b/zh_tw/Days/Images/Day90_Data6.png new file mode 100644 index 000000000..80938d7a5 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data6.png differ diff --git a/zh_tw/Days/Images/Day90_Data7.png b/zh_tw/Days/Images/Day90_Data7.png new file mode 100644 index 000000000..904421acc Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data7.png differ diff --git a/zh_tw/Days/Images/Day90_Data8.png b/zh_tw/Days/Images/Day90_Data8.png new file mode 100644 index 000000000..c059ad60a Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data8.png differ diff --git a/zh_tw/Days/Images/Day90_Data9.png b/zh_tw/Days/Images/Day90_Data9.png new file mode 100644 index 000000000..52955e333 Binary files /dev/null and b/zh_tw/Days/Images/Day90_Data9.png differ diff --git a/zh_tw/Days/Images/Day9_Go1.png b/zh_tw/Days/Images/Day9_Go1.png new file mode 100644 index 000000000..95a566d75 Binary files /dev/null and b/zh_tw/Days/Images/Day9_Go1.png differ diff --git a/zh_tw/Days/Images/Day9_Go2.png b/zh_tw/Days/Images/Day9_Go2.png new file mode 100644 index 000000000..955c7181f Binary files /dev/null and b/zh_tw/Days/Images/Day9_Go2.png differ diff --git a/zh_tw/Days/Images/Day9_Go3.png b/zh_tw/Days/Images/Day9_Go3.png new file mode 100644 index 000000000..199f61783 Binary files /dev/null and b/zh_tw/Days/Images/Day9_Go3.png differ diff --git a/zh_tw/Days/Images/Day9_Go4.png b/zh_tw/Days/Images/Day9_Go4.png new file mode 100644 index 000000000..ed171c48a Binary files /dev/null and b/zh_tw/Days/Images/Day9_Go4.png differ diff --git a/zh_tw/Days/Images/Day9_Go5.png b/zh_tw/Days/Images/Day9_Go5.png new file mode 100644 index 000000000..a1210c1c2 Binary files /dev/null and b/zh_tw/Days/Images/Day9_Go5.png differ diff --git a/zh_tw/Days/Images/Day9_Go6.png b/zh_tw/Days/Images/Day9_Go6.png new file mode 100644 index 000000000..549c629bd Binary files /dev/null and b/zh_tw/Days/Images/Day9_Go6.png differ diff --git a/zh_tw/Days/Kubernetes/Rancher/.gitignore b/zh_tw/Days/Kubernetes/Rancher/.gitignore new file mode 100644 index 000000000..582c81c1c --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/Rancher/Vagrantfile b/zh_tw/Days/Kubernetes/Rancher/Vagrantfile new file mode 100644 index 000000000..37111fae1 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/Rancher/scripts/common.sh b/zh_tw/Days/Kubernetes/Rancher/scripts/common.sh new file mode 100644 index 000000000..f1c1fddfe --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/Rancher/scripts/master.sh b/zh_tw/Days/Kubernetes/Rancher/scripts/master.sh new file mode 100644 index 000000000..fbdf4fbf3 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/Rancher/scripts/node.sh b/zh_tw/Days/Kubernetes/Rancher/scripts/node.sh new file mode 100644 index 000000000..ad16ffce6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/Vagrantfile b/zh_tw/Days/Kubernetes/Vagrantfile new file mode 100644 index 000000000..5141a15a8 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/configs/config b/zh_tw/Days/Kubernetes/configs/config new file mode 100644 index 000000000..784e7dd9f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/configs/join.sh b/zh_tw/Days/Kubernetes/configs/join.sh new file mode 100644 index 000000000..25ef53418 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/configs/token b/zh_tw/Days/Kubernetes/configs/token new file mode 100644 index 000000000..c92cc1c9e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/nginx-stateless-demo.yaml b/zh_tw/Days/Kubernetes/nginx-stateless-demo.yaml new file mode 100644 index 000000000..2c1426cae --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/pacman-ingress.yaml b/zh_tw/Days/Kubernetes/pacman-ingress.yaml new file mode 100644 index 000000000..5d0877926 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/pacman-stateful-demo.yaml b/zh_tw/Days/Kubernetes/pacman-stateful-demo.yaml new file mode 100644 index 000000000..143e53d3b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/scripts/common.sh b/zh_tw/Days/Kubernetes/scripts/common.sh new file mode 100644 index 000000000..f1c1fddfe --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/scripts/master.sh b/zh_tw/Days/Kubernetes/scripts/master.sh new file mode 100644 index 000000000..fbdf4fbf3 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/scripts/node.sh b/zh_tw/Days/Kubernetes/scripts/node.sh new file mode 100644 index 000000000..ad16ffce6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Kubernetes/statefulset.yaml b/zh_tw/Days/Kubernetes/statefulset.yaml new file mode 100644 index 000000000..a1e2526ce --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Linux/VAGRANTFILE b/zh_tw/Days/Linux/VAGRANTFILE new file mode 100644 index 000000000..7ca4f0e13 --- /dev/null +++ b/zh_tw/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", "128mb"] +end +end \ No newline at end of file diff --git a/zh_tw/Days/Linux/create-user.sh b/zh_tw/Days/Linux/create-user.sh new file mode 100644 index 000000000..554d6ae4d --- /dev/null +++ b/zh_tw/Days/Linux/create-user.sh @@ -0,0 +1,15 @@ +#! /usr/bin/bash + +echo "What is your intended username?" +read username +echo "What is your password" +read password + +#A user can be passed in as a command line argument +echo "$username user account being created." + +#A user is created with the name of command line argument +sudo useradd -m $username + +#A password can be parsed in as a command line argument. +sudo chpasswd <<< $username:$password \ No newline at end of file diff --git a/zh_tw/Days/Monitoring/EFK Stack/efk-stack.yaml b/zh_tw/Days/Monitoring/EFK Stack/efk-stack.yaml new file mode 100644 index 000000000..6440e6b6e --- /dev/null +++ b/zh_tw/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 + #Renderes 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 +--- \ No newline at end of file diff --git a/zh_tw/Days/Monitoring/Elastic Stack/.env b/zh_tw/Days/Monitoring/Elastic Stack/.env new file mode 100644 index 000000000..cd8b118b8 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/LICENSE b/zh_tw/Days/Monitoring/Elastic Stack/LICENSE new file mode 100644 index 000000000..0dbd69f8e --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/docker-compose.yaml b/zh_tw/Days/Monitoring/Elastic Stack/docker-compose.yaml new file mode 100644 index 000000000..1f85ef614 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/elasticsearch/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/elasticsearch/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/Days/Monitoring/Elastic Stack/elasticsearch/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/zh_tw/Days/Monitoring/Elastic Stack/elasticsearch/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/elasticsearch/Dockerfile new file mode 100644 index 000000000..22528c6d7 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/elasticsearch/config/elasticsearch.yml b/zh_tw/Days/Monitoring/Elastic Stack/elasticsearch/config/elasticsearch.yml new file mode 100644 index 000000000..3e8237994 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/README.md b/zh_tw/Days/Monitoring/Elastic Stack/extensions/README.md new file mode 100644 index 000000000..50016fb6c --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/Dockerfile new file mode 100644 index 000000000..9f03f5622 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/README.md b/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/README.md new file mode 100644 index 000000000..ef4f34e61 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/apm-server-compose.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/apm-server-compose.yml new file mode 100644 index 000000000..9d5d2b10f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/config/apm-server.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/apm-server/config/apm-server.yml new file mode 100644 index 000000000..71e2ea9fb --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/Dockerfile new file mode 100644 index 000000000..3a986e698 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/README.md b/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/README.md new file mode 100644 index 000000000..5c38786aa --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/config/curator.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/config/curator.yml new file mode 100644 index 000000000..f4cf8de3a --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/config/delete_log_files_curator.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/config/delete_log_files_curator.yml new file mode 100644 index 000000000..779c67ac0 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/curator-compose.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/curator/curator-compose.yml new file mode 100644 index 000000000..488cd8036 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/Dockerfile new file mode 100644 index 000000000..4f0752e55 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/README.md b/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/README.md new file mode 100644 index 000000000..71fd789de --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/config/enterprise-search.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/config/enterprise-search.yml new file mode 100644 index 000000000..40bb5923b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/enterprise-search-compose.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/enterprise-search/enterprise-search-compose.yml new file mode 100644 index 000000000..f6df917c6 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/Dockerfile new file mode 100644 index 000000000..b8dd5f3f5 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/README.md b/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/README.md new file mode 100644 index 000000000..43c5d6763 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/config/filebeat.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/config/filebeat.yml new file mode 100644 index 000000000..dfbd0c3da --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/filebeat-compose.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/filebeat/filebeat-compose.yml new file mode 100644 index 000000000..04ff10404 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/Dockerfile new file mode 100644 index 000000000..9591df53b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/README.md b/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/README.md new file mode 100644 index 000000000..f6a4d2bcb --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/build.sh b/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/build.sh new file mode 100644 index 000000000..c3ff93884 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/logspout-compose.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/logspout-compose.yml new file mode 100644 index 000000000..a603c3fed --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/modules.go b/zh_tw/Days/Monitoring/Elastic Stack/extensions/logspout/modules.go new file mode 100644 index 000000000..f1a225864 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/Dockerfile new file mode 100644 index 000000000..6d05bf55f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/README.md b/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/README.md new file mode 100644 index 000000000..4da282ae8 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/config/metricbeat.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/config/metricbeat.yml new file mode 100644 index 000000000..f7c07ca6a --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/metricbeat-compose.yml b/zh_tw/Days/Monitoring/Elastic Stack/extensions/metricbeat/metricbeat-compose.yml new file mode 100644 index 000000000..da62833ef --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/kibana/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/kibana/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/Days/Monitoring/Elastic Stack/kibana/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/zh_tw/Days/Monitoring/Elastic Stack/kibana/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/kibana/Dockerfile new file mode 100644 index 000000000..9a075bedb --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/kibana/config/kibana.yml b/zh_tw/Days/Monitoring/Elastic Stack/kibana/config/kibana.yml new file mode 100644 index 000000000..07ab33e5c --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/logstash/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/logstash/.dockerignore new file mode 100644 index 000000000..37eef9d51 --- /dev/null +++ b/zh_tw/Days/Monitoring/Elastic Stack/logstash/.dockerignore @@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store diff --git a/zh_tw/Days/Monitoring/Elastic Stack/logstash/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/logstash/Dockerfile new file mode 100644 index 000000000..bde5808d9 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/logstash/config/logstash.yml b/zh_tw/Days/Monitoring/Elastic Stack/logstash/config/logstash.yml new file mode 100644 index 000000000..47722ea7f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf b/zh_tw/Days/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf new file mode 100644 index 000000000..b61029b23 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/setup/.dockerignore b/zh_tw/Days/Monitoring/Elastic Stack/setup/.dockerignore new file mode 100644 index 000000000..02f224407 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/setup/.gitignore b/zh_tw/Days/Monitoring/Elastic Stack/setup/.gitignore new file mode 100644 index 000000000..a27475ad1 --- /dev/null +++ b/zh_tw/Days/Monitoring/Elastic Stack/setup/.gitignore @@ -0,0 +1 @@ +/state/ diff --git a/zh_tw/Days/Monitoring/Elastic Stack/setup/Dockerfile b/zh_tw/Days/Monitoring/Elastic Stack/setup/Dockerfile new file mode 100644 index 000000000..0b2ef9094 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/setup/entrypoint.sh b/zh_tw/Days/Monitoring/Elastic Stack/setup/entrypoint.sh new file mode 100644 index 000000000..269bb4f60 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/setup/helpers.sh b/zh_tw/Days/Monitoring/Elastic Stack/setup/helpers.sh new file mode 100644 index 000000000..24573725b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Monitoring/Elastic Stack/setup/roles/logstash_writer.json b/zh_tw/Days/Monitoring/Elastic Stack/setup/roles/logstash_writer.json new file mode 100644 index 000000000..b43861fed --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/192.168.169.115_20220127_145846 b/zh_tw/Days/Networking/192.168.169.115_20220127_145846 new file mode 100644 index 000000000..76ada0523 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/192.168.169.125_20220127_145846 b/zh_tw/Days/Networking/192.168.169.125_20220127_145846 new file mode 100644 index 000000000..1db869e2c --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/192.168.169.178_20220127_145846 b/zh_tw/Days/Networking/192.168.169.178_20220127_145846 new file mode 100644 index 000000000..2c1a71aa3 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/192.168.169.193_20220127_145846 b/zh_tw/Days/Networking/192.168.169.193_20220127_145846 new file mode 100644 index 000000000..31496048d --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/192.168.169.197_20220127_145846 b/zh_tw/Days/Networking/192.168.169.197_20220127_145846 new file mode 100644 index 000000000..f5c8f22b2 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/R1 b/zh_tw/Days/Networking/R1 new file mode 100644 index 000000000..c0b5e80ff --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/SW1 b/zh_tw/Days/Networking/SW1 new file mode 100644 index 000000000..9d8142873 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/SW2 b/zh_tw/Days/Networking/SW2 new file mode 100644 index 000000000..5eee50fc3 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/SW3 b/zh_tw/Days/Networking/SW3 new file mode 100644 index 000000000..397ef9b0d --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/SW4 b/zh_tw/Days/Networking/SW4 new file mode 100644 index 000000000..79b39f3dd --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/backup.py b/zh_tw/Days/Networking/backup.py new file mode 100644 index 000000000..0db70dce3 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/backup.txt b/zh_tw/Days/Networking/backup.txt new file mode 100644 index 000000000..01ce67084 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/netmiko_con_multi.py b/zh_tw/Days/Networking/netmiko_con_multi.py new file mode 100644 index 000000000..ead5306e8 --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/netmiko_con_multi_vlan.py b/zh_tw/Days/Networking/netmiko_con_multi_vlan.py new file mode 100644 index 000000000..e64a1640a --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/netmiko_sendchange.py b/zh_tw/Days/Networking/netmiko_sendchange.py new file mode 100644 index 000000000..cfb54486f --- /dev/null +++ b/zh_tw/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/zh_tw/Days/Networking/paramiko_show.py b/zh_tw/Days/Networking/paramiko_show.py new file mode 100644 index 000000000..63dba740b --- /dev/null +++ b/zh_tw/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/zh_tw/Days/day01.md b/zh_tw/Days/day01.md new file mode 100644 index 000000000..2f7c3fbc7 --- /dev/null +++ b/zh_tw/Days/day01.md @@ -0,0 +1,63 @@ +--- +title: '#90DaysOfDevOps - Introduction - Day 1' +published: false +description: 90DaysOfDevOps - Introduction +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048731 +date: '2022-04-17T10:12:40Z' +--- +## Introduction - Day 1 + +Day 1 of our 90 days and adventure to learn a good foundational understanding of DevOps and tools that help with a DevOps mindset. + +This learning journey started for me a few years back but my focus then was around virtualisation platforms and cloud based technologies, I was looking mostly into Infrastructure as Code and Application configuration management with Terraform and Chef. + +Fast forward to March 2021, I was given an amazing opportunity to concentrate my efforts around the Cloud Native strategy at Kasten by Veeam. Which was going to be a massive focus on Kubernetes and DevOps and the community surrounding these technologies. I started my learning journey and quickly realised there was a very wide world aside from just learning the fundamentals of Kubernetes and Containerisation and it was then when I started speaking to the community and learning more and more about the DevOps culture, tooling and processes so I started documenting some of the areas I wanted to learn in public. + +[So you want to learn DevOps?](https://blog.kasten.io/devops-learning-curve) + +## Let the journey begin + +If you read the above blog, you will see this is a high level contents for my learning journey and I will say at this point I am no where near an expert in any of these sections but what I wanted to do was share some resources both FREE and some paid for but an option for both as we all have different circumstances. + +Over the next 90 days I want to document these resources and cover those foundational areas. I would love for the community to also get involved. Share your journey and resources so we can learn in public and help each other. + +You will see from the opening readme in the project repository that I have split things into sections and it is basically 12 weeks plus 6 days. The first 6 days we will explore the fundamentals of DevOps in general before diving into some of the specific areas. By no way is this list exhaustive and again,I would love for the community to assist in making this a useful resource. + +Another resource I will share at this point and that I think everyone should have a good look at, maybe create your own mind map for yourself and your interest and position, is the following: + +[DevOps Roadmap](https://roadmap.sh/devops) + +I found this a great resource when I was creating my initial list and blog post on this topic. You can also see there are other areas that go into a lot more detail outside of the 12 topics I have listed here in this repository. + +## First Steps - What is DevOps? + +There are so many blog articles and YouTube videos to list here, but as we start the 90 day challenge and we focus on spending around an hour a day learning something new or about DevOps, I thought it was good to get some of the high level of "what DevOps is" down to begin. + +Firstly, DevOps is not a tool. You cannot buy it, it is not a software sku or an open source GitHub repository you can download. It is also not a programming language, it is also not some dark art magic either. + +DevOps is a way to do smarter things in Software Development. - Hold up... But if you are not a software developer should you turn away right now and not dive into this project??? No. Not at all. Stay... Because DevOps brings together a combination of software development and operations. I mentioned earlier that I was more on the VM side and that would generally fall under the Operations side of the house, but within the community there are people with all different backgrounds where DevOps is 100% going to benefit the individual, Developers, Operations and QA Engineers all can equally learn these best practices by having a better understanding of DevOps. + +DevOps is a set of practices that help to reach the goal of this movement: reducing the time between the ideation phase of a product and its release in production to the end-user or whomever it could be an internal team or customer. + +Another area we will dive into in this first week is around **The Agile Methodology**. DevOps and Agile are widely adopted together to achieve continuous delivery of your **Application**. + +The high level take away is that a DevOps mindset or culture is about shrinking the long, drawn out software release process from potentially years to being able to drop smaller releases more frequently. The other key fundamental point to understand here is the the responsibility of a DevOps engineer to break down silos between the teams I previously mentioned: Developers, Operations and QA. + +From a DevOps perspective, **Development, Testing and Deployment** all land with the DevOps team. + +The final point I will make is to make this as effective and efficient as possible we must leverage **Automation**. + +## Resources + +I am always open to adding additional resources to these readme files as it is here as a learning tool. + +My advice is to watch all of the below and hopefully you have also picked something up from the text and explanations above. + +- [DevOps in 5 Minutes](https://www.youtube.com/watch?v=Xrgk023l4lI) +- [What is DevOps? Easy Way](https://www.youtube.com/watch?v=_Gpe1Zn-1fE&t=43s) +- [DevOps roadmap 2022 | Success Roadmap 2022](https://www.youtube.com/watch?v=7l_n97Mt0ko) + +If you made it this far, then you will know if this is where you want to be or not. See you on [Day 2](day02.md). diff --git a/zh_tw/Days/day02.md b/zh_tw/Days/day02.md new file mode 100644 index 000000000..43c737283 --- /dev/null +++ b/zh_tw/Days/day02.md @@ -0,0 +1,68 @@ +--- +title: '#90DaysOfDevOps - Responsibilities of a DevOps Engineer - Day 2' +published: false +description: 90DaysOfDevOps - Responsibilities of a DevOps Engineer +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048699 +date: '2022-04-17T21:15:34Z' +--- +## Responsibilities of a DevOps Engineer + +Hopefully you are coming into this off the back of going through the resources and post on [Day1 of #90DaysOfDevOps](day01.md) + +It was briefly touched on in the first post but now we must get deeper into this concept and understand that there are two main parts when creating an application. We have the **Development** part where software developers program the application and test it. Then we have the **Operations** part where the application is deployed and maintained on a server. + +## DevOps is the link between the two + +To get to grips with DevOps or the tasks in which a DevOps engineer would be carrying out we need to understand the tools or the process and overview of those and how they come together. + +Everything starts with the application! You will see so much throughout that it is all about the application when it comes to DevOps. + +Developers will create an application, this can be done with many different technology stacks and lets leave that to the imagination for now as we get into this later. This can also involve many different programming languages, build tools, code repository etc. + +As a DevOps engineer you won't be programming the application but having a good understanding of the concepts of how a developer works and the systems, tools and processes they are using is key to success. + +At a very high level you are going to need to know how the application is configured to talk to all of its required services or data services and then also sprinkle a requirement of how this can or should be tested. + +The application will need to be deployed somewhere, lets keep it generally simple here and make this a server, doesn't matter where but a server. This is then expected to be accessed by the customer or end user depending on the application that has been created. + +This server needs to run somewhere, on-premises, in a public cloud, serverless (Ok I have gone too far, we won't be covering serverless but its an option and more and more enterprises are heading this way) Someone needs to create and configure these servers and get them ready for the application to run. Now this element might land to you as a DevOps engineer to deploy and configure these servers. + +These servers will have to run an Operating System and generally speaking this is going to be Linux but we have a whole section or week where we cover some of the foundational knowledge you should gain here. + +It is also likely that we need to communicate with other services in our network or environment, so we also need to have that level of knowledge around networking and configuring that, this might to some degree also land at the feet of the DevOps engineer. Again we will cover this in more detail in a dedicated section talking all things DNS, DHCP, Load Balancing etc. + +## Jack of all trades, Master of none + +I will say at this point though, you don't need to be a Network or Infrastructure specialist you need a foundational knowledge of how to get things up and running and talking to each other, much the same as maybe having a foundational knowledge of a programming language but you don't need to be a developer. However you might be coming into this as a specialist in an area and that is a great footing to adapt to other areas. + +You will also most likely not take over the management of these servers or the application on a daily basis. + +We have been talking about servers but the likelihood is that your application will be developed to run as containers, Which still runs on a server for the most part but you will also need an understanding of not only virtualisation, Cloud Infrastructure as a Service (IaaS) but also containerisation as well, The focus in these 90 days will be more catered towards containers. + +## High Level Overview + +On one side we have our developers creating new features and functionality (as well as bug fixes) for the application. + +On the other side we have some sort of environment, infrastructure or servers which are configured and managed to run this application and communicate with all its required services. + +The big question is how do we get those features and bug fixes into our production and make it available to those end users? + +How do we release the new application version? This is one of the main tasks for a DevOps engineer, and the important thing here is not to just figure out how to do this once but we need to do this continuously and in an automated, efficient way which also needs to include testing! + +This is where we are going to end this day of learning, hopefully this was useful. Over the next few days we are going to dive a little deeper into some more areas of DevOps and then we will get into the sections that dive deeper into the tooling and processes and the benefits of these. + +## Resources + +I am always open to adding additional resources to these readme files as it is here as a learning tool. + +My advice is to watch all of the below and hopefully you also picked something up from the text and explanations above. +- [What is DevOps? - TechWorld with Nana](https://www.youtube.com/watch?v=0yWAtQ6wYNM) +- [What is DevOps? - GitHub YouTube](https://www.youtube.com/watch?v=kBV8gPVZNEE) +- [What is DevOps? - IBM YouTube](https://www.youtube.com/watch?v=UbtB4sMaaNM) +- [What is DevOps? - AWS ](https://aws.amazon.com/devops/what-is-devops/) +- [What is DevOps? - Microsoft](https://docs.microsoft.com/en-us/devops/what-is-devops) + +If you made it this far then you will know if this is where you want to be or not. See you on [Day 3](day03.md). diff --git a/zh_tw/Days/day03.md b/zh_tw/Days/day03.md new file mode 100644 index 000000000..6b3b1d50c --- /dev/null +++ b/zh_tw/Days/day03.md @@ -0,0 +1,84 @@ +--- +title: '#90DaysOfDevOps - Application Focused - Day 3' +published: false +description: 90DaysOfDevOps - Application Focused +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048825 +--- +## DevOps Lifecycle - Application Focused + +As we continue through these next few weeks we are 100% going to come across these titles (Continuous Development, Testing, Deployment, Monitor) over and over again, If you are heading towards the DevOps Engineer role then repeatability will be something you will get used to but constantly enhancing each time is another thing that keeps things interesting. + +In this hour we are going to take a look at the high level view of the application from start to finish and then back round again like a constant loop. + +### Development +Let's take a brand new example of an Application, to start with we have nothing created, maybe as a developer you have to discuss with your client or end user on the requirements and come up with some sort of plan or requirements for your Application. We then need to create from the requirements our brand new application. + +In regards to tooling at this stage there is no real requirement here other than choosing your IDE and the programming language you wish to use to write your application. + +As a DevOps engineer, remember you are probably not the one creating this plan or coding the application for the end user, this will be a skilled developer. + +But it also would not hurt for you to be able to read some of the code so that you can make the best infrastructure decisions moving forward for your application. + +We previously mentioned that this application can be written in any language. Importantly this should be maintained using a version control system, this is something we will cover also in detail later on and in particular we will dive into **Git**. + +It is also likely that it will not be one developer working on this project although this could be the case but even so best practices would require a code repository to store and collaborate on the code, this could be private or public and could be hosted or privately deployed generally speaking you would hear the likes of **GitHub or GitLab** being used as a code repository. Again we will cover these as part of our section on **Git** later on. + + +### Testing +At this stage we have our requirements and we have our application being developed. But we need to make sure we are testing our code in all the various different environments that we have available to us or specifically maybe to the programming language chosen. + +This phase enables QA to test for bugs, more frequently we see containers being used for simulating the test environment which overall can improve on cost overheads of physical or cloud infrastructure. + +This phase is also likely going to be automated as part of the next area which is Continuous Integration. + +The ability to automate this testing vs 10s,100s or even 1000s of QA engineers having to do this manually speaks for itself, these engineers can focus on something else within the stack to ensure you are moving faster and developing more functionality vs testing bugs and software which tends to be the hold up on most traditional software releases that use a waterfall methodology. + +### Integration + +Quite importantly Integration is at the middle of the DevOps lifecycle. It is the practice of in which developers require to commit changes to the source code more frequently. This could be on a daily or weekly basis. + +With every commit your application can go through the automated testing phases and this allows for early detection of issues or bugs before the next phase. + +Now you might at this stage be saying "but we don't create applications, we buy it off the shelf from a software vendor" Don't worry many companies do this and will continue to do this and it will be the software vendor that is concentrating on the above 3 phases but you might want to still adopt the final phase as this will enable for faster and more efficient deployments of your off the shelf deployments. + +I would also suggest just having this above knowledge is very important as you might buy off the shelf software today, but what about tomorrow or down the line... next job maybe? + +### Deployment +Ok so we have our application built and tested against the requirements of our end user and we now need to go ahead and deploy this application into production for our end users to consume. + +This is the stage where the code is deployed to the production servers, now this is where things get extremely interesting and it is where the rest of our 86 days dives deeper into these areas. Because different applications require different possibly hardware or configurations. This is where **Application Configuration Management** and **Infrastructure as Code** could play a key part in your DevOps lifecycle. It might be that your application is **Containerised** but also available to run on a virtual machine. Which then also leads us onto platforms like **Kubernetes** which would be orchestrating those containers and making sure you have the desired state available to your end users. + +All of these bold topics we will go into more detail over the next few weeks to get a better foundational knowledge of what they are and when to use them. + +### Monitoring + +Things are moving fast here and we have our Application that we are continuously updating with new features and functionality and we have our testing making sure no gremlins are being found. We have the application running in our environment that can be continually keeping the required configuration and performance. + +But now we need to be sure that our end users are getting the experience they require. Here we need to make sure that our Application Performance is continuously being monitored, this phase is going to allow your developers to make better decisions about enhancements to the application in future releases to better serve the end users. + +This section is also where we are going to capture that feedback wheel about the features that have been implemented and how the end users would like to make these better for them. + +Reliability is a key factor here as well, at the end of the day we want our Application to be available all the time it is required. This then lends to other **observability, security and data management** areas that should be continuously monitored and feedback can always be used to better enhance, update and release the application continuously. + +Some input from the community here specifcally [@_ediri](https://twitter.com/_ediri) mentioned also part of this continous process we should also have the FinOps teams involved. Apps & Data are running and stored somewhere you should be monitoring this continously to make sure if things change from a resources point of view your costs are not causing some major financial pain on your Cloud Bills. + +I think it is also a good time to bring up the "DevOps Engineer" mentions above, albeit there are many DevOps Engineer positions in the wild that people hold, this is not really the ideal way of positioning the process of DevOps. What I mean is from speaking to others in the community the title of DevOps Engineer should not be the goal for anyone because really any position should be adopting DevOps processes and the culture explained here. DevOps should be used in many different positions such as Cloud-Native engineer/architect, virtualisation admin, cloud architect/engineer, infrastructure admin. This is to name a few but the reason for using DevOps Engineer above was really to highlight the scope or the process used by any of the above positions and more. + +## Resources + +I am always open to adding additional resources to these readme files as it is here as a learning tool. + +My advice is to watch all of the below and hopefully you also picked something up from the text and explanations above. + +- [Continuous Development](https://www.youtube.com/watch?v=UnjwVYAN7Ns) I will also add that this is focused on manufacturing but the lean culture can be closely followed with DevOps. +- [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.co.uk/Phoenix-Project-DevOps-Helping-Business-ebook/dp/B00AZRBLHO) + +If you made it this far then you will know if this is where you want to be or not. See you on [Day 4](day04.md). diff --git a/zh_tw/Days/day04.md b/zh_tw/Days/day04.md new file mode 100644 index 000000000..58e40824c --- /dev/null +++ b/zh_tw/Days/day04.md @@ -0,0 +1,99 @@ +--- +title: '#90DaysOfDevOps - DevOps & Agile - Day 4' +published: false +description: 90DaysOfDevOps - DevOps & Agile +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048700 +--- + +## DevOps & Agile + +Do you know the difference between DevOps and Agile? They were formed as standalone concepts. But now the two terms are getting fused. + +In this post, we will examine the crucial differences between Agile and DevOps and find out why the two are connected so tightly. + +I think a good place to start is understanding a little more about a common angle I have seen in learning this area and that is DevOps vs Agile, even though they have similar goals and processes. In this section, I am going to summarise this hopefully. + +Let's start with definitions. + +### Agile Development + +Agile is an approach that focuses on delivering small results faster rather than releasing one big interaction of the product; software is developed in iterations. The team releases a new version every week or month with incremental updates. The final goal of Agile is to deliver an optimal experience to the end-users. + +### DevOps + +We have been covering this for the past few days with a few different ways of describing the end goals of DevOps. DevOps usually describes software development +and delivery practices based on cooperation between software developers and operations specialists. The main DevOps benefits are delivering a simplified development process and minimising miscommunication. + +## What is the difference between Agile and DevOps + +The difference is mainly the preoccupations. Agile and DevOps have different preoccupations but they are helping each other. Agile wants short iteration, which is only possible with the automation that DevOps brings. Agile wants the customer to try a specific version and quickly give feedback which is only possible if DevOps make the creation of new environment easy. + +### Different participants + +Agile focuses on optimising communication between end-users and developers while DevOps targets developers and operation team members. We could say that agile is outward-oriented towards customers whereas DevOps is a set of internal practices. + +### Team + +Agile usually applies to software developers and project managers. The competencies of DevOps engineers lie in the intersection of development, QA (quality assurance) and operations as they are involved in all stages of the product cycle and are part of the Agile team. + +### Applied Frameworks + +Agile has a lot of management frameworks to achieve flexibility and transparency: Scrum > Kanban > Lean > Extreme > Crystal > Dynamic > Feature-Driven. DevOps focuses on the development approach in collaboration but doesn't offer specific methodologies. However, DevOps promote practices like Infrastructure as Code, Architecture as Code, Monitoring, Self Healing, end to end test automation ... But per se this is not a framework, rather practices. + +### Feedback + +In Agile the main source of feedback is the end-user while in DevOps the feedback from stakeholders and the team itself has a higher priority. + +### Target areas + +Agile focuses on software development more than on deployment and maintenance. DevOps focuses on software development as well but its values and tools also cover deployment and post-release stages like monitoring, high availability, security and data protection. + +### Documentation + +Agile prioritises flexibility and tasks at hand over documentation and monitoring. DevOps on the other hand regards project documentation as one of the essential project components. + +### Risks + +Agile risks derive from the flexibility of the methodology. Agile projects are difficult to predict or evaluate as priorities and requirements are continually changing. + +DevOps risks derive from a misunderstanding of the term and the lack of suitable tools. Some people see DevOps as a collection of software for the deployment and continuous integration failing to change the underlying structure of the development process. + +### The Tools Used + +Agile tools are focused on management communication collaboration, metrics and feedback processing. The most popular agile tools include JIRA, Trello, Slack, Zoom, SurveyMonkey and others. + +DevOps uses tools for team communication, software development, deployment and integration like Jenkins, GitHub Actions, BitBucket, etc. Even though agile and DevOps have slightly different focuses and scopes the key values are almost identical, therefore you can combine the two. + +## Bring it all together… good idea or not? Discuss? + +The combination of Agile and DevOps brings the following benefits you will get: + +- Flexible management and powerful technology. +- Agile practices help DevOps teams to communicate their priorities more efficiently. +- The automation cost that you have to pay for your DevOps practices is justified by your agile requirement of deploying quickly and frequently. +- It leads to strengthening: the team adopting agile practices will improve collaboration, increase the team's motivation and decrease employee turnover rates. +- As a result, you get better product quality. + +Agile allows coming back to previous product development stages to fix errors and prevent the accumulation of technical debt. To adopt agile and DevOps +simultaneously just follow 7 steps: + +1. Unite the development and operation teams. +2. Create build and run teams, all development and operational concerns are discussed by the entire DevOps team. +3. Change your approach to sprints, and assign priority ratings to offer DevOps tasks that have the same value than development tasks. Encourage development and operations teams to exchange their opinion on other teams workflow and possible issues. +4. Include QA in all development stages. +5. Choose the right tools. +6. Automate everything you can. +7. Measure and control by using tangible numeric deliverables. + +What do you think? Do you have different views? I want to hear from Developers, Operations, QA or anyone that has a better understanding of Agile and DevOps that can pass comments and feedback on this? + +### Resources + +- [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) + +If you made it this far then you will know if this is where you want to be or not. See you on [Day 5](day05.md). diff --git a/zh_tw/Days/day05.md b/zh_tw/Days/day05.md new file mode 100644 index 000000000..721ea6bab --- /dev/null +++ b/zh_tw/Days/day05.md @@ -0,0 +1,85 @@ +--- +title: '#90DaysOfDevOps - Plan > Code > Build > Testing > Release > Deploy > Operate > Monitor > - Day 5' +published: false +description: 90DaysOfDevOps - Plan > Code > Build > Testing > Release > Deploy > Operate > Monitor > +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048830 +--- +## Plan > Code > Build > Testing > Release > Deploy > Operate > Monitor > + +Today we are going to focus on the individual steps from start to finish and the continous cycle of an Application in a DevOps world. + +![DevOps](Images/Day5_DevOps8.png) + +### Plan: + +It all starts with the planning process this is where the development team gets together and figure out what types of features and bug fixes that they're going to roll out in their next sprint. This is an opportunity as a DevOps Engineer for you to get involved with that and learn what kinds of things are going to be coming your way that you need to be involved with and also influence their decisions or their path and kind of help them work with the infrastructure that you've built or steer them towards something that's going to work better for them in case they're not on that path and so one key thing to point out here is the developers or software engineering team is your customer as a DevOps engineer so this is your opportunity to work with your customer before they go down a bad path. + +### Code: + +Now once that planning session's done they're going to go start writing the code you may or may not be involved a whole lot with this one of the places you may get involved with it, is whenever they're writing code you can help them better understand the infrastructure so if they know what services are available and how to best talk with those services so they're going to do that and then once they're done they'll merge that code into the repository + +### Build: + +This is where we'll kick off the first of our automation processes because we're going to take their code and we're going to build it depending on what language they're using it may be transpiling it or compiling it or it might be creating a docker image from that code either way we're going to go through that process using our ci cd pipeline + +## Testing: + +Once we've built it we're going to run some tests on it now the development team usually writes the test you may have some input in what tests get written but we need to run those tests and the testing is a way for us to try and minimise introducing problems out into production, it doesn't guarantee that but we want to get as close to a guarantee as we can that were one not introducing new bugs and two not breaking things that used to work + +## Release: + +Once those tests pass we're going to do the release process and depending again on what type of application you're working on this may be a non-step. You know the code may just live in the GitHub repo or the git repository or wherever it lives but it may be the process of taking your compiled code or the docker image that you've built and putting it into a registry or a repository where it's accessible by your production servers for the deployment process + +## Deploy: + +which is the thing that we do next because deployment is like the end game of this whole thing because deployments when we put the code into production and it's not until we do that that our business actually realizes the value from all the time effort and hard work that you and the software engineering team have put into this product up to this point. + +## Operate: + +Once it's deployed we are going to operate it and operate it may involve something like you start getting calls from your customers that they're all annoyed that the site's running slow or their application is running slow right so you need to figure out why that is and then possibly build auto-scaling you know to handle increase the number of servers available during peak periods and decrease the number of servers during off-peak periods either way that's all operational type metrics, another operational thing that you do is include like a feedback loop from production back to your ops team letting you know about key events that happened in production such as a deployment back one step on the deployment thing this may or may not get automated depending on your environment the goal is to always automate it when possible there are some environments where you possibly need to do a few steps before you're ready to do that but ideally you want to deploy automatically as part of your automation process but if you're doing that it might be a good idea to include in your operational steps some type of notification so that your ops team knows that a deployment has happened + +## Monitor: + +All of the above parts lead to the final step because you need to have monitoring, especially around operational issues auto-scaling troubleshooting like you don't know +there's a problem if you don't have monitoring in place to tell you that there's a problem so some of the things you might build monitoring for are memory utilization CPU utilization disk space, api endpoint, response time, how quickly that endpoint is responding and a big part of that as well is logs. Logs give developers the ability to see what is happening without having to access production systems. + +## Rince & Repeat: + +Once that's in place you go right back to the beginning to the planning stage and go through the whole thing again + +## Continuous: + +Many tools help us achieve the above continuous process, all this code and the ultimate goal of being completely automated, cloud infrastructure or any environment is often described as Continuous Integration/ Continuous Delivery/Continous Deployment or “CI/CD” for short. We will spend a whole week on CI/CD later on in the 90 Days with some examples and walkthroughs to grasp the fundamentals. + +### Continuous Delivery: + +Continuous Delivery = Plan > Code > Build > Test + +### Continuous Integration: + +This is effectively the outcome of the Continuous Delivery phases above plus the outcome of the Release phase. This is the case for both failure and success but this is fed back into continuous delivery or moved to Continuous Deployment. + +Continuous Integration = Plan > Code > Build > Test > Release + +### Continuous Deployment: + +If you have a successful release from your continuous integration then move to Continuous Deployment which brings in the following phases + +CI Release is Success = Continuous Deployment = Deploy > Operate > Monitor + +You can see these three Continuous notions above as the simple collection of phases of the DevOps Lifecycle. + +This last bit was a bit of a recap for me on Day 3 but think this actually makes things clearer for me. + +### Resources: + +- [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) + +If you made it this far then you will know if this is where you want to be or not. + +See you on [Day 6](day06.md). diff --git a/zh_tw/Days/day06.md b/zh_tw/Days/day06.md new file mode 100644 index 000000000..f4f04605a --- /dev/null +++ b/zh_tw/Days/day06.md @@ -0,0 +1,74 @@ +--- +title: '#90DaysOfDevOps - DevOps - The real stories - Day 6' +published: false +description: 90DaysOfDevOps - DevOps - The real stories +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048855 +--- +## DevOps - The real stories + +DevOps to begin with was seen to be out of reach for a lot of us as we didn't have an environment or requirement anything like a Netflix or fortune 500 but think now that is beginning to sway into the normal when adopting a DevOps practice within any type of business. + +You will see from the second link below in references there are a lot of different industries and verticals using DevOps and having a hugely positive effect on their business objectives. + +Obviously the overarching benefit here is DevOps if done correctly should help your Business improve the speed and quality of software development. + +I wanted to take this Day to look at succesful companies that have adopted a DevOps practice and share some resources around this, This will be another great one for the community to also dive in and help here. Have you adopted a DevOps culture in your business? Has it been successful? + +I mentioned Netflix above and will touch on them again as it is a very good model and advanced to what we generally see today even still but will also mention some other big name brands that are succeeding it seems. + +## Amazon +In 2010 Amazon moved their physical server footprint to Amazon Web Services (AWS) cloud this allowed them to save resources by scaling capacity up and down in very small increments. We also know that this AWS cloud would go on and make a huge amount of revenue itself whilst still running the Amazon retail branch of the company. + +Amazon adopted in 2011 (According to the resource below) a continued deployment process where their developers could deploy code whenever they want and to whatever servers they needed. This enabled Amazon to achieve deploying new software to production servers on average every 11.6 seconds! + +## Netflix +Who doesn't use Netflix? obviously a huge quality streaming service with by all accounts at least personally a great user experience. + +Why is that user experience so great? Well the ability to deliver a service with no recollected memory for me at least of glitches requires speed, flexibility, and attention to quality. + +NetFlix developers can automatically build pieces of code into deployable web images without relying on IT operations. As the images are updated, they are integrated into Netflix’s infrastructure using a custom-built, web-based platform. + +Continous Monitoring is in place so that if the deployment of the images fails, the new images are rolled back and traffic rerouted to the previous version. + +There is a great talk listed below that goes into more about the DOs and DONTs that Netflix live and die by within their teams. + +## Etsy +As with many of us and many companies there was a real struggle around slow and painful deployments. In the same vein we might have also experienced working in companies that have lots of siloes and teams that are not really working well together. + +From what I can make out at least from reading about Amazon and Netflix, Etsy might have adopted the letting developers deploy their own code around the end of 2009 which might have been before the other two mentioned. (interesting!) + +An interesting take away I read here was that they realised that when developers feel responsibility for deployment they also would take responsibility for application performance, uptime and other goals. + + + +A learning culture is a key part to DevOps, even failure can be a success if lessons are learned. (not sure where this quote actually came from but it kind of makes sense!) + +I have added some other stories where DevOps has changed the game within some of these massively successful companies. + + +## Resources + +- [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) + +### Recap of our first few days looking at DevOps + +- DevOps is a combo of Development and Operations that allows a single team to manage the whole application development lifecycle that consists of **Development**, **Testing**, **Deployment**, **Operations**. + +- The main focus and aim of DevOps is to shorten the development lifecycle while delivering features, fixes and functionality frequently in close alignment with business objectives. + +- DevOps is a software development approach through which software can be delivered and developed reliably and quickly. You may also see this referenced as **Continuous Development, Testing, Deployment, Monitoring** + +If you made it this far then you will know if this is where you want to be or not. See you on [Day 7](day07.md). + +Day 7 will be us diving into a programming language, I am not aiming to be a developer but I want to be able to understand what the developers are doing. + +Can we achieve that in a week? Probably not but if we spend 7 days or 7 hours learning something we are going to know more than when we started. diff --git a/zh_tw/Days/day07.md b/zh_tw/Days/day07.md new file mode 100644 index 000000000..f7c3c2646 --- /dev/null +++ b/zh_tw/Days/day07.md @@ -0,0 +1,69 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: Learning a Programming Language - Day 7' +published: false +description: 90DaysOfDevOps - The Big Picture DevOps & Learning a Programming Language +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048856 +--- +## The Big Picture: DevOps & Learning a Programming Language + +I think it is fair to say to be successful in the long term as a DevOps engineer you've got to know at least one programming language at a foundational level. I want to take this first session of this section to explore why this is such a critical skill to have, and hopefully, by the end of this week or section, you are going to have a better understanding of the why, how and what to do to progress with your learning journey. + +I think if I was to ask out on social do you need to have programming skills for DevOps related roles, the answer will be most likely a hard yes? Let me know if you think otherwise? Ok but then a bigger question and this is where you won't get such a clear answer is which programming language? The most common answer I have seen here has been Python or increasingly more often, we're seeing Golang or Go should be the language that you learn. + +To be successful in DevOps you have to have a good knowledge of programming skills is my takeaway from that at least. But we have to understand why we need it to choose the right path. + +## Understand why you need to learn a programming language. + +The reason that Python and Go are recommended so often for DevOps engineers is that a lot of the DevOps tooling is written in either Python or Go, which makes sense if you are going be build DevOps tools. Now this is important as this will determine really what you should learn and that would likely be the most beneficial. If you are going to be building DevOps tools or you are joining a team that does then it would make sense to learn that same language, if you are going to be heavily involved in Kubernetes or Containers then it's more than likely that you would want to choose Go as your programming language. For me, the company I work for (Kasten by Veeam) is in the Cloud-Native ecosystem focused on data management for Kubernetes and everything is written in Go. + +But then you might not have clear cut reasoning like that to choose you might be a student or transitioning careers with no real decision made for you. I think in this situation then you should choose the one that seems to resonate and fit with the applications you are looking to work with. + +Remember I am not looking to become a software developer here I just want to understand a little more about the programming language so that I can read and understand what those tools are doing and then that leads to possibly how we can help improve things. + +I would also it is also important to know how you interact with those DevOps tools which could be Kasten K10 or it could be Terraform and HCL. These are what we will call config files and this is how you interact with those DevOps tools to make things happen, commonly these are going to be YAML. (We may use the last day of this section to dive a little into YAML) + +## Did I just talk myself out of learning a programming language? + +Most of the time or depending on the role, you will be helping engineering teams implement DevOps into their workflow, a lot of testing around the application and making sure that the workflow that is built aligns to those DevOps principles we mentioned over the first few days. But in reality, this is going to be a lot of the time troubleshooting an application performance issue or something along those lines. This comes back to my original point and reasoning, the programming language I need to know is the one that the code is written in? If their application is written in NodeJS it won’t help much if you have a Go or Python badge. + +## Why Go + +Why Golang is the next programming language for DevOps, Go has become a very popular programming language in recent years. According to the StackOverflow Survey for 2021 Go came in fourth for the most wanted Programming, scripting and markup languages with Python being top but hear me out. [StackOverflow 2021 Developer Survey – Most Wanted Link](https://insights.stackoverflow.com/survey/2021#section-most-loved-dreaded-and-wanted-programming-scripting-and-markup-languages) + +As I have also mentioned some of the most known DevOps tools and platforms are written in Go such as Kubernetes, Docker, Grafana and Prometheus. + +What are some of the characteristics of Go that make it great for DevOps? + +## Build and Deployment of Go Programs +An advantage of using a language like Python that is interpreted in a DevOps role is that you don’t need to compile a python program before running it. Especially for smaller automation tasks, you don’t want to be slowed down by a build process that requires compilation even though, Go is a compiled programming language, **Go compiles directly into machine code**. Go is known also for fast compilation times. + +## Go vs Python for DevOps + +Go Programs are statically linked, this means that when you compile a go program everything is included in a single binary executable, no external dependencies will be required that would need to be installed on the remote machine, this makes the deployment of go programs easy, compared to python program that uses external libraries you have to make sure that all those libraries are installed on the remote machine that you wish to run on. + +Go is a platform-independent language, which means you can produce binary executables for *all the operating systems, Linux, Windows, macOS etc and very easy to do so. With Python, it is not as easy to create these binary executables for particular operating systems. + +Go is a very performant language, it has fast compilation and fast run time with lower resource usage like CPU and memory especially compared to python, numerous optimisations have been implemented in the Go language that makes it so performant. (Resources below) + +Unlike Python which often requires the use of third party libraries to implement a particular python program, go includes a standard library that has the majority of functionality that you would need for DevOps built directly into it. This includes functionality file processing, HTTP web services, JSON processing, native support for concurrency and parallelism as well as built-in testing. + +This is by no way throwing Python under the bus I am just giving my reasons for choosing Go but they are not the above Go vs Python it's generally because it makes sense as the company I work for develops software in Go so that is why. + +I will say that once you have or at least I am told as I am not many pages into this chapter right now, is that once you learn your first programming language it becomes easier to take on other languages. You're probably never going to have a single job in any company anywhere where you don't have to deal with manage, architect, orchestrating, debug JavaScript and Node JS applications. + +## Resources + +- [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) + +Now for the next 6 days of this topic my intention is to work through some of the resources listed above and document my notes for each day. You will notice that they are generally around 3 hours as a full course, I wanted to share my complete list so that if you have time you should move ahead and work through each one if time permits, I will be sticking to my learning hour each day. + +See you on [Day 8](day08.md). diff --git a/zh_tw/Days/day08.md b/zh_tw/Days/day08.md new file mode 100644 index 000000000..8c337a3ec --- /dev/null +++ b/zh_tw/Days/day08.md @@ -0,0 +1,107 @@ +--- +title: '#90DaysOfDevOps - Setting up your DevOps environment for Go & Hello World - Day 8' +published: false +description: 90DaysOfDevOps - Setting up your DevOps environment for Go & Hello World +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048857 +--- +## Setting up your DevOps environment for Go & Hello World + +Before we get into some of the fundamentals of Go we should get Go installed on our workstation and do what every "learning programming 101" module teaches us which is to create the Hello World app. As this one is going to be walking through the steps to get Go installed on your workstation we are going to attempt to document the process in pictures so people can easily follow along. + +First of all, let's head on over to [go.dev/dl](https://go.dev/dl/) and you will be greeted with some available options for downloads. + +![](Images/Day8_Go1.png) + +If we made it this far you probably know which workstation operating system you are running so select the appropriate download and then we can get installing. I am using Windows for this walkthrough, basically, from this next screen, we can leave all the defaults in place for now. ***(I will note that at the time of writing this was the latest version so screenshots might be out of date)*** + +![](Images/Day8_Go2.png) + +Also note if you do have an older version of Go installed you will have to remove this before installing, Windows has this built into the installer and will remove and install as one. + +Once finished you should now open a command prompt/terminal and we want to check that we have Go installed. If you do not get the output that we see below then Go is not installed and you will need to retrace your steps. + +`go version` + +![](Images/Day8_Go3.png) + +Next up we want to check our environment for Go. This is always good to check to make sure your working directories are configured correctly, as you can see below we need to make sure you have the following directory on your system. + +![](Images/Day8_Go4.png) + +Did you check? Are you following along? You will probably get something like the below if you try and navigate there. + +![](Images/Day8_Go5.png) + +Ok, let's create that directory for ease I am going to use the mkdir command in my powershell terminal. We also need to create 3 folders within the Go folder as you will see also below. + +![](Images/Day8_Go6.png) + +Now we have Go installed and we have our Go working directory ready for action. We now need an integrated development environment (IDE) Now there are many out there available that you can use but the most common and the one I use is Visual Studio Code or Code. You can learn more about IDEs [here](https://www.youtube.com/watch?v=vUn5akOlFXQ). + +If you have not downloaded and installed VSCode already on your workstation then you can do so by heading [here](https://code.visualstudio.com/download). As you can see below you have your different OS options. + +![](Images/Day8_Go7.png) + +Much the same as with the Go installation we are going to download and install and keep the defaults. Once complete you can open VSCode and you can select Open File and navigate to our Go directory that we created above. + +![](Images/Day8_Go8.png) + +You may get a popup about trust, read it if you want and then hit Yes, trust the authors. (I am not responsible later on though if you start opening things you don't trust!) + +Now you should see the three folders we also created earlier as well and what we want to do now is right click the src folder and create a new folder called `Hello` + +![](Images/Day8_Go9.png) + +Pretty easy stuff I would say up till this point? Now we are going to create our first Go Program with no understanding about anything we put in this next phase. + +Next create a file called `main.go` in your `Hello` folder. As soon as you hit enter on the main.go you will be asked if you want to install the Go extension and also packages you can also check that empty pkg file that we made a few steps back and notice that we should have some new packages in there now? + +![](Images/Day8_Go10.png) + +Now let's get this Hello World app going, copy for the following code into your new main.go file and save that. + +``` +package main + +import "fmt" + +func main() { + fmt.Println("Hello #90DaysOfDevOps") +} +``` +Now I appreciate that the above might make no sense at all, but we will cover more about functions, packages and more in later days. For now let's run our app. Back in the terminal and in our Hello folder we can now check that all is working. Using the command below we can check to see if our generic learning program is working. + +``` +go run main.go +``` +![](Images/Day8_Go11.png) + +It doesn't end there though, what if we now want to take our program and run it on other Windows machines? We can do that by building our binary using the following command + +``` +go build main.go +``` +![](Images/Day8_Go12.png) + +If we run that + +![](Images/Day8_Go13.png) + + +## Resources + +- [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) + + +See you on [Day 9](day09.md). + +![](Images/Day8_Go13.png) diff --git a/zh_tw/Days/day09.md b/zh_tw/Days/day09.md new file mode 100644 index 000000000..f5b7263c7 --- /dev/null +++ b/zh_tw/Days/day09.md @@ -0,0 +1,78 @@ +--- +title: '#90DaysOfDevOps - Let''s explain the Hello World code - Day 9' +published: false +description: 90DaysOfDevOps - Let's explain the Hello World code +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048732 +--- +## Let's explain the Hello World code + +### How Go works + +On [Day 8](day08.md) we walked through getting Go installed on your workstation and we then created our first Go application. + +In this section, we are going to take a deeper look into the code and understand a few more things about the Go language. + +### What is Compiling? +Before we get into the [6 lines of the Hello World code](Go/hello.go) we need to have a bit of an understanding about compiling. + +Programming languages that we commonly use such as Python, Java, Go and C++ are high-level languages. Meaning they are human-readable but when a machine is trying to execute a program it needs to be in a form that a machine can understand. We have to translate our human-readable code to machine code which is called compiling. + +![](Images/Day9_Go1.png) + +From the above you can see what we did on [Day 8](day08.md) here, we created a simple Hello World main.go and we then used the command `go build main.go` to compile our executable. + +### What are packages? +A package is a collection of source files in the same directory that are compiled together. We can simplify this further, a package is a bunch of .go files in the same directory. Remember our Hello folder from Day 8? If and when you get into more complex Go programs you might find that you have folder1 folder2 and folder3 containing different .go files that make up your program with multiple packages. + +We use packages so we can reuse other peoples code, we don't have to write everything from scratch. Maybe we are wanting a calculator as part of our program, you could probably find an existing Go Package that contains the mathematical functions that you could import into your code saving you a lot of time and effort in the long run. + +Go encourages you to organise your code in packages so that it is easy to reuse and maintain source code. + +### Hello #90DaysOfDevOps Line by Line +Now let's take a look at our Hello #90DaysOfDevOps main.go file and walk through the lines. + +![](Images/Day9_Go2.png) + +In the first line, you have `package main` which means that this file belongs to a package called main. All .go files need to belong to a package, they should also have `package something` in the opening line. + +A package can be named whatever you wish. We have to call this `main` as this is the starting point of the program that is going to be in this package, this is a rule. (I need to understand more about this rule?) + +![](Images/Day9_Go3.png) + +Whenever we want to compile and execute our code we have to tell the machine where the execution needs to start. We do this by writing a function called main. The machine will look for a function called main to find the entry point of the program. + +A function is a block of code that can do some specific task for and can be used across the program. + +You can declare a function with any name using `func` but in this case we need to name it `main` as this is where the code starts. + +![](Images/Day9_Go4.png) + +Next we are going to look at line 3 of our code, the import, this basically means you want to bring in another package to your main program. fmt is a standard package being used here provided by Go, this package contains the `Println()`function and because we have imported this we can use this in line 6. There are a number of standard packages you can include in your program and leverage or reuse them in your code saving you the hassle of having to write from scratch. [Go Standard Library](https://pkg.go.dev/std) + +![](Images/Day9_Go5.png) + +the `Println()` that we have here is a way in which to write to a standard output to the terminal where ever the executuable has been executed succesfully. Feel free to change the message in between the (). + +![](Images/Day9_Go6.png) + +### TLDR + +- **Line 1** = This file will be in the package called `main` and this needs to be called `main` because includes the entry point of the program. +- **Line 3** = For us to use the `Println()` we have to import the fmt package to use this on line 6. +- **Line 5** = The actual starting point, its the `main` function. +- **Line 6** = This will let us print "Hello #90DaysOfDevOps" on our system. + +## Resources + +- [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) + +See you on [Day 10](day10.md). diff --git a/zh_tw/Days/day10.md b/zh_tw/Days/day10.md new file mode 100644 index 000000000..7203dcff3 --- /dev/null +++ b/zh_tw/Days/day10.md @@ -0,0 +1,94 @@ +--- +title: '#90DaysOfDevOps - The Go Workspace - Day 10' +published: false +description: 90DaysOfDevOps - The Go Workspace +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048701 +--- +### The Go Workspace +On [Day 8](day08.md) we briefly covered the Go workspace to get Go up and running to get to the demo of `Hello #90DaysOfDevOps` But we should explain a little more about the Go workspace. + +Remember we chose the defaults and we then went through and created our Go folder in the GOPATH that was already defined but in reality, this GOPATH can be changed to be wherever you want it to be. + +If you run + +``` +echo $GOPATH +``` +The output should be similar to mine (with a different username may be) which is: + +``` +/home/michael/projects/go +``` +Then within here, we created 3 directories. **src**, **pkg** and **bin** + +![](Images/Day10_Go1.png) + +**src** is where all of your Go programs and projects are stored. This handles namespacing package management for all your Go repositories. This is where you will see on our workstation we have our Hello folder for the Hello #90DaysOfDevOps project. + +![](Images/Day10_Go2.png) + +**pkg** is where your archived files of packages that are or were installed in programs. This helps to speed up the compiling process based on if the packages being used have been modified. + +![](Images/Day10_Go3.png) + +**bin** is where all of your compiled binaries are stored. + +![](Images/Day10_Go4.png) + +Our Hello #90DaysOfDevOps is not a complex program so here is an example of a more complex Go Program taken from another great resource worth looking at [GoChronicles](https://gochronicles.com/) + +![](Images/Day10_Go5.png) + +This page also goes into some great detail about why and how the layout is like this it also goes a little deeper on other folders we have not mentioned [GoChronicles](https://gochronicles.com/project-structure/) + +### Compiling & running code +On [Day 9](day09.md) we also covered a brief introduction to compiling code, but we can go a little deeper here. + +To run our code we first must **compile** it. There are three ways to do this within Go. + +- go build +- go install +- go run + +Before we get to the above compile stage we need to take a look at what we get with the Go Installation. + +When we installed Go on Day 8 this installed something known as Go tools which consist of several programs that let us build and process our Go source files. One of the tools is `Go` + +It is worth noting that you can install additional tools that are not in the standard Go installation. + +If you open your command prompt and type `go` you should see something like the image below and then you will see "Additional Help Topics" below that for now we don't need to worry about those. + +![](Images/Day10_Go6.png) + +You might also remember that we have already used at least two of these tools so far on Day 8. + +![](Images/Day10_Go7.png) + +The ones we want to learn more about are build, install and run. + +![](Images/Day10_Go8.png) + +- `go run` - This command compiles and runs the main package comprised of the .go files specified on the command line. The command is compiled to a temporary folder. +- `go build` - To compile packages and dependencies, compile the package in the current directory. If the `main` package, will place the executable in the current directory if not then it will place the executable in the `pkg` folder. `go build` also enables you to build an executable file for any Go Supported OS platform. +- `go install` - The same as go build but will place the executable in the `bin` folder + +We have run through go build and go run but feel free to run through them again here if you wish, `go install` as stated above puts the executable in our bin folder. + +![](Images/Day10_Go9.png) + +Hopefully, if you are following along you are watching one of the playlists or videos below, I am taking bits of all of these and translating these into my notes so that I can understand the foundational knowledge of the Golang language. The resources below are likely going to give you a much better understanding of a lot of the areas you need overall but I am trying to document the 7 days or 7 hours worth of the journey with interesting things that I have found. + +## Resources + +- [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) + +See you on [Day 11](day11.md). diff --git a/zh_tw/Days/day11.md b/zh_tw/Days/day11.md new file mode 100644 index 000000000..e8eef0174 --- /dev/null +++ b/zh_tw/Days/day11.md @@ -0,0 +1,169 @@ +--- +title: '#90DaysOfDevOps - Variables & Constants in Go - Day 11' +published: false +description: 90DaysOfDevOps - Variables & Constants in Go +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048862 +--- + +Before we get into the topics for today I want to give a massive shout out to [Techworld with Nana](https://www.youtube.com/watch?v=yyUHQIec83I) and this fantastic concise journey through the fundamentals of Go. + +On [Day8](day08.md) we set our environment up, on [Day9](day09.md) we walked through the Hello #90DaysOfDevOps code and on [Day10](day10.md)) we looked at our Go workspace and went a little deeper into compiling and running the code. + +Today we are going to take a look into Variables, Constants and Data Types whilst writing a new program. + +## Variables & Constants in Go +Let's start by planning our application, I think it would be a good idea to work on a program that tells us how many days we have remained in our #90DaysOfDevOps challenge. + +The first thing to consider here is that as we are building our app and we are welcoming our attendees and we are giving the user feedback on the number of days they have completed we might use the term #90DaysOfDevOps many times throughout the program. This is a great use case to make #90DaysOfDevOps a variable within our program. + +- Variables are used to store values. +- Like a little box with our saved information or values. +- We can then use this variable across the program which also benefits that if this challenge or variable changes then we only have to change this in one place. Meaning we could translate this to other challenges we have in the community by just changing that one variable value. + +To declare this in our Go Program we define a value by using a **keyword** for variables. This will live within our `func main` block of code that you will see later. You can find more about [Keywords](https://go.dev/ref/spec#Keywords)here. + +Remember to make sure that your variable names are descriptive. If you declare a variable you must use it or you will get an error, this is to avoid possible dead code, code that is never used. This is the same for packages not used. + +``` +var challenge = "#90DaysOfDevOps" +``` +With the above set and used as we will see in the next code snippet you can see from the output below that we have used a variable. + +``` +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + fmt.Println("Welcome to", challenge "") +} +``` +You can find the above code snippet in [day11_example1.go](Go/day11_example1.go) + +You will then see from the below that we built our code with the above example and we got the output shown below. + +![](Images/Day11_Go1.png) + +We also know that our challenge is 90 days at least for this challenge, but next, maybe it's 100 so we want to define a variable to help us here as well. However, for our program, we want to define this as a constant. Constants are like variables, except that their value cannot be changed within code (we can still create a new app later on down the line with this code and change this constant but this 90 will not change whilst we are running our application) + +Adding the `const` to our code and adding another line of code to print this. + +``` +package main + +import "fmt" + +func main() { + var challenge = "#90DaysOfDevOps" + const daystotal = 90 + + fmt.Println("Welcome to", challenge) + fmt.Println("This is a", daystotal, "challenge") +} +``` +You can find the above code snippet in [day11_example2.go](Go/day11_example2.go) + +If we then go through that `go build` process again and run you will see below the outcome. + +![](Images/Day11_Go2.png) + +Finally, and this won't be the end of our program we will come back to this in [Day12](day12.md) to add more functionality. We now want to add another variable for the number of days we have completed the challenge. + +Below I added `dayscomplete` variable with the number of days completed. + +``` +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") +} +``` +You can find the above code snippet in [day11_example3.go](Go/day11_example3.go) + +Let's run through that `go build` process again or you could just use `go run` + +![](Images/Day11_Go3.png) + +Here are some other examples that I have used to make the code easier to read and edit. We have up till now been using `Println` but we can simplify this by using `Printf` by using `%v` which means we define our variables in order at the end of the line of code. we also use `\n` for a line break. + +I am using `%v` as this uses a default value but there are other options that can be found here in the [fmt package documentation](https://pkg.go.dev/fmt) you can find the code example [day11_example4.go](Go/day11_example4.go) + +Variables may also be defined in a simpler format in your code. Instead of defining that it is a `var` and the `type` you can code this as follows to get the same functionality but a nice cleaner and simpler look for your code. This will only work for variables though and not constants. + +``` +func main() { + challenge := "#90DaysOfDevOps" + const daystotal = 90 +``` + +## Data Types +In the above examples, we have not defined the type of variables, this is because we can give it a value here and Go is smart enough to know what that type is or at least can infer what it is based on the value you have stored. However, if we want a user to input this will require a specific type. + +We have used Strings and Integers in our code so far. Integers for the number of days and strings are for the name of the challenge. + +It is also important to note that each data type can do different things and behaves differently. For example, integers can multiply where strings do not. + +There are four categories + +- **Basic type**: Numbers, strings, and booleans come under this category. +- **Aggregate type**: Array and structs come under this category. +- **Reference type**: Pointers, slices, maps, functions, and channels come under this category. +- **Interface type** + +The data type is an important concept in programming. Data type specifies the size and type of variable values. + +Go is statically typed, meaning that once a variable type is defined, it can only store data of that type. + +Go has three basic data types: + +- **bool**: represents a boolean value and is either true or false +- **Numeric**: represents integer types, floating-point values, and complex types +- **string**: represents a string value + +I found this resource super detailed on data types [Golang by example](https://golangbyexample.com/all-data-types-in-golang-with-examples/) + +I would also suggest [Techworld with Nana](https://www.youtube.com/watch?v=yyUHQIec83I&t=2023s) at this point covers in some detail a lot about the data types in Go. + +If we need to define a type in our variable we can do this like so: + +``` +var TwitterHandle string +var DaysCompleted uint +``` + +Because Go implies variables where a value is given we can print out those values with the following: + +``` +fmt.Printf("challenge is %T, daystotal is %T, dayscomplete is %T\n", conference, daystotal, dayscomplete) +``` +There are many different types of integer and float types the links above will cover off these in detail. + +- **int** = whole numbers +- **unint** = positive whole numbers +- **floating point types** = numbers that contain a decimal component + +## Resources + +- [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) + +Next up we are going to start adding some user input functionality to our program so that we are asking how many days have been completed. + +See you on [Day 12](day12.md). diff --git a/zh_tw/Days/day12.md b/zh_tw/Days/day12.md new file mode 100644 index 000000000..4a55c92ae --- /dev/null +++ b/zh_tw/Days/day12.md @@ -0,0 +1,83 @@ +--- +title: '#90DaysOfDevOps - Getting user input with Pointers and a finished program - Day 12' +published: false +description: 90DaysOfDevOps - Getting user input with Pointers and a finished program +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048864 +--- +## Getting user input with Pointers and a finished program + +Yesterday ([Day 11](day11.md)), we created our first Go program that was self-contained and the parts we wanted to get user input for were created as variables within our code and given values, we now want to ask the user for their input to give the variable the value for the end message. + +## Getting user input + +Before we do that let's take a look at our application again and walk through the variables we want as a test before getting that user input. + +Yesterday we finished up with our code looking like this [day11_example4.go](Go/day11_example4.go) we have manually in code defined our `challenge, daystotal, dayscomplete` variables and constants. + +Let's now add a new variable called `TwitterName` you can find this new code at [day12_example1.go](Go/day12_example1.go) and if we run this code this is our output. + +![](Images/Day12_Go1.png) + +We are on day 12 and we would need to change that `dayscomplete` every day and compile our code each day if this was hardcoded which doesn't sound so great. + +Getting user input, we want to get the value of maybe a name and the number of days completed. For us to do this we can use another function from within the `fmt` package. + +Recap on the `fmt` package, different functions for: formatted input and output (I/O) + +- Print Messages +- Collect User Input +- Write into a file + +This is instead of assigning the value of a variable we want to ask the user for their input. + +``` +fmt.Scan(&TwitterName) +``` +Notice that we also use `&` before the variable. This is known as a pointer which we will cover in the next section. + +In our code [day12_example2.go](Go/day12_example2.go) you can see that we are asking the user to input two variables, `TwitterName` and `DaysCompleted` + +Let's now run our program and you see we have input for both of the above. + +![](Images/Day12_Go2.png) + +Ok, that's great we got some user input and we printed a message but what about getting our program to tell us how many days we have left in our challenge. + +For us to do that we have created a variable called `remainingDays` and we have hard valued this in our code as `90` we then need to change the value of this value to print out the remaining days when we get our user input of `DaysCompleted` we can do this with this simple variable change. + +``` +remainingDays = remainingDays - DaysCompleted +``` +You can see how our finished program looks here [day12_example2.go](Go/day12_example3.go). + +If we now run this program you can see that simple calculation is made based on the user input and the value of the `remainingDays` + +![](Images/Day12_Go3.png) + +## What is a pointer? (Special Variables) + +A pointer is a (special) variable that points to the memory address of another variable. + +A great explanation of this can be found here at [geeksforgeeks](https://www.geeksforgeeks.org/pointers-in-golang/) + +Let's simplify our code now and show with and without the `&` in front of one of our print commands, this gives us the memory address of the pointer. I have added this code example here. [day12_example4.go](Go/day12_example4.go) + +Below is running this code. + +![](Images/Day12_Go4.png) + +## Resources + +- [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) + +See you on [Day 13](day13.md). + diff --git a/zh_tw/Days/day13.md b/zh_tw/Days/day13.md new file mode 100644 index 000000000..49c2f93fd --- /dev/null +++ b/zh_tw/Days/day13.md @@ -0,0 +1,315 @@ +--- +title: '#90DaysOfDevOps - Tweet your progress with our new App - Day 13' +published: false +description: 90DaysOfDevOps - Tweet your progress with our new App +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048865 +--- +## Tweet your progress with our new App + +On the final day of looking into this programming language, we have only just touched the surface here of the language but it is that start that I think we need to get interested and excited and want to dive more into it. + +Over the last few days, we have taken a small idea for an application and we have added functionality to it, in this session I want to take advantage of those packages we mentioned and create the functionality for our app to not only give you the update of your progress on screen but also send a tweet with the details of the challenge and your status. + +## Adding the ability to tweet your progress +The first thing we need to do is set up our developer API access with Twitter for this to work. + +Head to the [Twitter Developer Platform](https://developer.twitter.com) and sign in with your Twitter handle and details. Once in you should see something like the below without the app that I already have created. + +![](Images/Day13_Go1.png) + +From here you may also want to request elevated access, this might take some time but it was very fast for me. + +Next, we should select Projects & Apps and create our App. Limits are depending on the account access you have, with essential you only have one app and one project and with elevated you can have 3 apps. + +![](Images/Day13_Go2.png) + +Give your application a name + +![](Images/Day13_Go3.png) + +You will be then given these API tokens, it is important that you save these somewhere secure. (I have since deleted this app) We will need these later with our Go Application. + +![](Images/Day13_Go4.png) + +Now we have our app created,(I did have to change my app name as the one in the screenshot above was already taken, these names need to be unique) + +![](Images/Day13_Go5.png) + +The keys that we gathered before are known as our consumer keys and we will also need our access token and secrets. We can gather this information using the "Keys & Tokens" tab. + +![](Images/Day13_Go6.png) + +Ok, we are done in the Twitter developer portal for now. Make sure you keep your keys safe because we will need them later. + +## Go Twitter Bot + +Remember the code we are starting within our application as well [day13_example1](Go/day13_example1.go) but first, we need to check we have the correct code to make something tweet + +We now need to think about the code to get our output or message to Twitter in the form of a tweet. We are going to be using [go-twitter](https://github.com/dghubble/go-twitter) This is a Go client library for the Twitter API. + +To test this before putting this into our main application, I created a new directory in our `src` folder called go-twitter-bot, issued the `go mod init github.com/michaelcade/go-twitter-bot` on the folder which then created a `go.mod` file and then we can start writing our new main.go and test this out. + +We now need those keys, tokens and secrets we gathered from the Twitter developer portal. We are going to set these in our environment variables. This will depend on the OS you are running: + +Windows +``` +set CONSUMER_KEY +set CONSUMER_SECRET +set ACCESS_TOKEN +set ACCESS_TOKEN_SECRET +``` + +Linux / macOS +``` +export CONSUMER_KEY +export CONSUMER_SECRET +export ACCESS_TOKEN +export ACCESS_TOKEN_SECRET +``` +At this stage, you can take a look at [day13_example2](Go/day13_example2.go) at the code but you will see here that we are using a struct to define our keys, secrets and tokens. + +We then have a `func` to parse those credentials and make that connection to the Twitter API + +Then based on the success we will then send a tweet. + +``` +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) +} + +``` +The above will either give you an error based on what is happening or it will succeed and you will have a tweet sent with the message outlined in the code. + +## Pairing the two together - Go-Twitter-Bot + Our App + +Now we need to merge these two in our `main.go` I am sure someone out there is screaming that there is a better way of doing this and please comment on this as you can have more than one `.go` file in a project it might make sense but this works. + +You can see the merged codebase [day13_example3](Go/day13_example3.go) but I will also show it below. + +``` +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) + } + +} +``` +The outcome of this should be a tweet but if you did not supply your environment variables then you should get an error like the one below. + +![](Images/Day13_Go7.png) + +Once you have fixed that or if you choose not to authenticate with Twitter then you can use the code we finished with yesterday. The terminal output on success will look similar to this: + +![](Images/Day13_Go8.png) + +The resulting tweet should look something like this: + +![](Images/Day13_Go9.png) + +## How to compile for multiple OSs + +I next want to cover the question, "How do you compile for multiple Operating Systems?" The great thing about Go is that it can easily compile for many different Operating Systems. You can get a full list by running the following command: + +``` +go tool dist list +``` +Using our `go build` commands so far is great and it will use the `GOOS` and `GOARCH` environment variables to determine the host machine and what the build should be built for. But we can also create other binaries by using the code below as an example. + +``` +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 +``` + +This will then give you binaries in your directory for all of the above platforms. You can then take this and create a makefile to build these binaries whenever you add new features and functionality to your code. I have included the [makefile](Go/makefile) + +This is what I have used to create the releases you can now see on the [repository](https://github.com/MichaelCade/90DaysOfDevOps/releases) + +## Resources + +- [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/) + +This wraps up the Programming language for 7 days! So much more that can be covered and I hope you have been able to continue through the content above and be able to understand some of the other aspects of the Go programming language. + +Next, we take our focus into Linux and some of the fundamentals that we should all know there. + +See you on [Day 14](day14.md). diff --git a/zh_tw/Days/day14.md b/zh_tw/Days/day14.md new file mode 100644 index 000000000..97325f4b1 --- /dev/null +++ b/zh_tw/Days/day14.md @@ -0,0 +1,172 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: DevOps and Linux - Day 14' +published: false +description: 90DaysOfDevOps - The Big Picture DevOps and Linux +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049033 +--- +## The Big Picture: DevOps and Linux +Linux and DevOps share very similar cultures and perspectives; both are focused on customization and scalability. Both of these aspects of Linux are of particular importance for DevOps. + +A lot of technologies start on Linux, especially if they are related to software development or managing infrastructure. + +As well lots of open source projects, especially DevOps tools, were designed to run on Linux from the start. + +From a DevOps perspective or in fact any operations role perspective you are going to come across Linux I would say mostly. There is a place for WinOps but the majority of the time you are going to be administering and deploying Linux servers. + +I have been using Linux on a daily basis for a number of years but my go to desktop machine has always been either macOS or Windows. However, when I moved into the Cloud Native role I am in now I took the plunge to make sure that my laptop was fully Linux based and my daily driver, whilst I still needed Windows for work-based applications and a lot of my audio and video gear does not run on Linux I was forcing myself to run a Linux desktop full time to get a better grasp of a lot of the things we are going to touch on over the next 7 days. + +## Getting Started +I am not suggesting you do the same as me by any stretch as there are easier options and less destructive but I will say taking that full-time step forces you to learn faster on how to make things work on Linux. + +For the majority of these 7 days, I am actually going to deploy a Virtual Machine in Virtual Box on my Windows machine. I am also going to deploy a desktop version of a Linux distribution, whereas a lot of the Linux servers you will be administering will likely be servers that come with no GUI and everything is shell-based. However, as I said at the start a lot of the tools that we covered throughout this whole 90 days started out on Linux I would also strongly encourage you to take the dive into running that Linux Desktop for that learning experience as well. + + + +For the rest of this post, we are going to concentrate on getting a Ubuntu Desktop virtual machine up and running in our Virtual Box environment. Now we could just download [Virtual Box](https://www.virtualbox.org/) and grab the latest [Ubuntu ISO](https://ubuntu.com/download) from the sites linked and go ahead and build out our desktop environment but that wouldn't be very DevOps of us, would it? + + + +Another good reason to use most Linux distributions is that they are free and open-source. We are also choosing Ubuntu as it is probably the most widely used distribution deployed not thinking about mobile devices and enterprise RedHat Enterprise servers. I might be wrong there but with CentOS and the history there I bet Ubuntu is high on the list and it's super simple. + + + +## Introducing HashiCorp Vagrant + + + +Vagrant is a CLI utility that manages the lifecycle of your virtual machines. We can use vagrant to spin up and down virtual machines across many different platforms including vSphere, Hyper-v, Virtual Box and also Docker. It does have other providers but we will stick with that we are using Virtual Box here so we are good to go. + + + +The first thing we need to do is get Vagrant installed on our machine, when you go to the downloads page you will see all the operating systems listed for your choice. [HashiCorp Vagrant](https://www.vagrantup.com/downloads) I am using Windows so I grabbed the binary for my system and went ahead and installed this to my system. + + + +Next up we also need to get [Virtual Box](https://www.virtualbox.org/wiki/Downloads) installed. Again this can also be installed on many different operating systems again a good reason to choose this and vagrant is that if you are running Windows, macOS, or Linux then we have you covered here. + + + +Both installations are pretty straightforward. If you have issues both have great communities around them also feel free to reach out and I can try to assist also. + + + +## Our first VAGRANTFILE + + + +The VAGRANTFILE describes the type of machine we want to deploy. It also defines how we want the configuration and provisioning of this machine need to look. + + + +When it comes to saving these and organizing your VAGRANTFILEs I tend to put them in their own folders in my workspace. You can see below how this looks on my system. Hopefully following this you will play around with Vagrant and see the ease of spinning up different systems, it is also great for that rabbit hole is known as distro hopping for Linux Desktops. + + + +![](Images/Day14_Linux1.png) + + + +Let's take a look at that VAGRANTFILE then and see what we are building. + + + +``` + +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", "128mb"] + +end + +end + +``` + +This is a very simple VAGRANTFILE overall we are saying we want a specific "box" a box being possibly either a public image or private build of the system you are looking for. You can find a long list of "boxes" publicly available here in the [public catalog of Vagrant boxes](https://app.vagrantup.com/boxes/search) + + + +Next line we are saying we want to use a specific provider in this case it is `VirtualBox` and then we want to define our machine's memory to `8GB and our number of CPUs to `4`. My experience also tells me that you may want to also add the following line if you experience display issues. This will set the video memory to what you want, I would ramp this right up to `128MB but depends on your system. + + + +``` + +v.customize ["modifyvm", :id, "--vram", ""] + +``` + +I have also placed a copy of this specific vagrant file in the [Linux Folder](Linux/VAGRANTFILE) + + + +## Provisioning our Linux Desktop + + + +We are now ready to get our first machine up and running, in your workstations terminal. In my case I am using PowerShell on my Windows machine, navigate to your projects folder and where you will find your VAGRANTFILE. Once there you can type the command `vagrant up` and if everything is correct then you will see something like the below. + + + +![](Images/Day14_Linux2.png) + + + +Another thing to add here is that the network will be set to `NAT` on your virtual machine, at this stage we don't really need to know about NAT and I plan to have a whole session talking about in the next section about Networking. But know that it is the easy button when it comes to getting a machine on your home network, it is also the default networking mode on Virtual Box. You can find out more in the [Virtual Box documentation](https://www.virtualbox.org/manual/ch06.html#network_nat) + + + +Once `vagrant up` is complete we can now use `vagrant ssh` to jump straight into the terminal of our new VM. + + + +![](Images/Day14_Linux3.png) + + + +This is where we will do most of our exploring over the next few days but I also want to dive into some customizations for your developer workstation that I have done and it makes your life much simpler when running this as your daily driver, and of course, are you really in DevOps unless you have a cool nonstandard terminal? + + + +But just to confirm in Virtual Box you should see the login prompt when you select your VM. + + + +![](Images/Day14_Linux4.png) + + + +Oh and if you made it this far and you have been asking "WHAT IS THE USERNAME & PASSWORD?" + + + +- Username = vagrant + +- Password = vagrant + + + +Tomorrow we are going to get into some of the commands and what they do, The terminal is going to be the place to make everything happen. + +## Resources + +- [Learn the Linux Fundamentals - Part 1](https://www.youtube.com/watch?v=kPylihJRG70) +- [Linux for hackers (don't worry you don't need be a hacker!)](https://www.youtube.com/watch?v=VbEx7B_PTOE) + +There are going to be lots of resources I find as we go through and much like the Go resources I am generally going to be keeping them to FREE content so we can all partake and learn here. + +As I mentioned next up we will take a look at the commands we might be using on a daily whilst in our Linux environments. + +See you on [Day15](day15.md) + diff --git a/zh_tw/Days/day15.md b/zh_tw/Days/day15.md new file mode 100644 index 000000000..7b9863c04 --- /dev/null +++ b/zh_tw/Days/day15.md @@ -0,0 +1,208 @@ +--- +title: '#90DaysOfDevOps - Linux Commands for DevOps (Actually everyone) - Day 15' +published: false +description: 90DaysOfDevOps - Linux Commands for DevOps (Actually everyone) +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048834 +--- +## Linux Commands for DevOps (Actually everyone) + +I mentioned it [yesterday](day14.md) that we are going to be spending a lot of time in the terminal with some commands to get stuff done. + +I also mentioned that with our vagrant provisioned VM we can use `vagrant ssh` and gain access to our box. You will need to be in the same directory as we provisioned it from. + +For SSH you won't need the username and password, you will only need that if you decide to login to the Virtual Box console. + +This is where we want to be as per below: + +![](Images/Day15_Linux1.png) + +## Commands + +Obviously I cannot cover all the commands here, there are pages and pages of documentation that cover these but also if you are ever in your terminal and you just need to understand options to a specific command we have the `man` pages short for manual. We can use this to go through each of the commands we touch on during this post to find out more options for each one. We can run `man man` which will give you the help for manual pages. To escape the man pages you should press `q` for quit. + +![](Images/Day15_Linux2.png) +![](Images/Day15_Linux3.png) + +`sudo` If you are familar with Windows and the right click `run as administrator` we can think of `sudo` as very much this. When you run a command with this command you will be running it as `root` it will prompt you for the password before running the command. + +![](Images/Day15_Linux4.png) + +For one off jobs like installing applications or services you might need that `sudo command` but what if you have several tasks to deal with and you want to live as `sudo` for a while? This is where you can use `sudo su` again the same as `sudo` once entered you will be prompted for your `root` password. In a test VM like ours this is fine but I would find it very hard for us to be rolling around as `root` for prolonged periods, bad things can happen. To get out of this elevated position you simply type in `exit` + +![](Images/Day15_Linux5.png) + +I find myself using `clear` all the time, the `clear` command does exactly what it says it is going to clear the screen of all previous commands, putting your prompt to the top and giving you a nice clean workspace. Windows I think is `cls` in the .mdprompt. + +![](Images/Day15_Linux6.png) + +Let's now look at some commands where we can actually create things within our system and then visualise them in our terminal, first of all we have `mkdir` this will allow us to create a folder in our system. With the following command we can create a folder in our home directory called Day15 `mkdir Day15` + +![](Images/Day15_Linux7.png) + +With `cd` this allows us to change directory, so for us to move into our newly created directory we can do this with `cd Day15` tab can also be used to autocomplete the directory available. If we want to get back to where we started we can use `cd ..` + +![](Images/Day15_Linux8.png) + +`rmdir` allows for us to remove the directory, if we run `rmdir Day15` then the folder will be removed (note that this will only work if you have nothing in the folder) + +![](Images/Day15_Linux9.png) + +I am sure we have all done it where we have navigated to the depths of our file system to a directory and not known where we are. `pwd` gives us the print out of the working directory, pwd as much as it looks like password it stands for print working directory. + +![](Images/Day15_Linux10.png) + +We know how to create folders and directories but how do we create files? We can create files using the `touch` command if we were to run `touch Day15` this would create a file. Ignore `mkdir` we are going see this again later. + +![](Images/Day15_Linux11.png) + +`ls` I can put my house on this, you will use this command so many times, this is going to list the all the files and folders in the current directory. Let's see if we can see that file we just created. + +![](Images/Day15_Linux12.png) + +How can we find files on our Linux system? `locate` is going to allow us to search our file system. If we use `locate Day15` it will report back that location of the file. Bonus round is that if you know that the file does exist but you get a blank result then run `sudo updatedb` which will index all the files in the file system then run your `locate` again. If you do not have `locate` available to you, you can install it using this command `sudo apt install mlocate` + +![](Images/Day15_Linux13.png) + +What about moving files from one location to another? `mv` is going to allow you to move your files. Example `mv Day15 90DaysOfDevOps` will move your file to the 90DaysOfDevOps folder. + +![](Images/Day15_Linux14.png) + +We have moved our file but what if we want to rename it now to something else? We can do that using the `mv` command again... WOT!!!? yep we can simply use `mv Day15 day15` to change to upper case or we could use `mv day15 AnotherDay` to change it altogether, now use `ls` to check the file. + +![](Images/Day15_Linux15.png) + +Enough is enough, let's now get rid (delete)of our file and maybe even our directory if we have one created. `rm` simply `rm AnotherDay` will remove our file. We will also use quite a bit `rm -R` which will recursively work through a folder or location. We might also use `rm -R -f` to force the removal of all of those files. Spoiler if you run `rm -R -f /` add sudo to it and you can say goodbye to your system....! + +![](Images/Day15_Linux16.png) + +We have looked at moving files around but what if I just want to copy files from one folder to another, simply put its very similar to the `mv` command but we use `cp` so we can now say `cp Day15 Desktop` + +![](Images/Day15_Linux17.png) + +We have created folders and files but we haven't actually put any contents into our folder, we can add contents a few ways but an easy way is `echo` we can also use `echo` to print out a lot of things in our terminal, I personally use echo a lot to print out system variables to know if they are set or not at least. we can use `echo "Hello #90DaysOfDevOps" > Day15` and this will add this to our file. We can also append to our file using `echo "Commands are fun!" >> Day15` + +![](Images/Day15_Linux18.png) + +Another one of those commands you will use a lot! `cat` short for concatenate. We can use `cat Day15` to see the contents inside the file. Great for quickly reading those configuration files. + +![](Images/Day15_Linux19.png) + +If you have a long complex configuration file and you want or need to find something fast in that file vs reading every line then `grep` is your friend, this will allow us to search your file for a specific word using `cat Day15 | grep "#90DaysOfDevOps"` + +![](Images/Day15_Linux20.png) + +If you are like me and you use that `clear` command a lot then you might miss some of the commands previously ran, we can use `history` to find out all those commands we have run prior. `history -c` will remove the history. + +When you run `history` and you would like to pick a specific command you can use `!3` to choose the 3rd command in the list. + +You are also able to use `history | grep "Command` to search for something specific. + +On servers to trace back when was a command executed, it can be useful to append the date and time to each command in the history file. + +The following system variable controls this behaviour: +``` +HISTTIMEFORMAT="%d-%m-%Y %T " +``` +You can easily add to your bash_profile: +``` +echo 'export HISTTIMEFORMAT="%d-%m-%Y %T "' >> ~/.bash_profile +``` +So as useful to allow the history file grow bigger: + +``` +echo 'export HISTSIZE=100000' >> ~/.bash_profile +echo 'export HISTFILESIZE=10000000' >> ~/.bash_profile +``` + +![](Images/Day15_Linux21.png) + +Need to change your password? `passwd` is going allow us to change our password. Note that when you add your password in like this when it is hidden it will not be shown in `history` however if your command has `-p PASSWORD` then this will be visible in your `history`. + +![](Images/Day15_Linux22.png) + +We might also want to add new users to our system, we can do this with `useradd` we have to add the user using our `sudo` command, we can add a new user with `sudo useradd NewUser` + +![](Images/Day15_Linux23.png) + +Creating a group again requires `sudo` and we can use `sudo groupadd DevOps` then if we want to add our new user to that group we can do this by running `sudo usermod -a -G DevOps` `-a` is add and `-G` is group name. + +![](Images/Day15_Linux24.png) + +How do we add users to the `sudo` group, this would be a very rare occassion for this to happen but in order to do this it would be `usermod -a -G sudo NewUser` + +### Permissions + +read, write and execute are the permissions we have on all of our files and folders on our Linux system. + +A full list: + +- 0 = None `---` +- 1 = Execute only `--X` +- 2 = Write only `-W-` +- 3 = Write & Exectute `-WX` +- 4 = Read Only `R--` +- 5 = Read & Execute `R-X` +- 6 = Read & Write `RW-` +- 7 = Read, Write & Execute `RWX` + +You will also see `777` or `775` and these represent the same numbers as the list above but each one represents **User - Group - Everyone** + +Let's take a look at our file. `ls -al Day15` you can see the 3 groups mentioned above, user and group has read & write but everyone only has read. + +![](Images/Day15_Linux25.png) + +We can change this using `chmod` you might find yourself doing this if you are creating binaries a lot on your systems as well and you need to give the ability to execute those binaries. `chmod 750 Day15` now run `ls -al Day15` if you want to run this for a whole folder then you can use `-R` to recursively do that. + +![](Images/Day15_Linux26.png) + +What about changing the owner of the file? We can use `chown` for this operation, if we wanted to change the ownership of our `Day15` from user `vagrant` to `NewUser` we can run `sudo chown NewUser Day15` again `-R` can be used. + +![](Images/Day15_Linux27.png) + +A command that you will come across is `awk` where this comes in real use is when you have an output that you only need specific data from. like running `who` we get lines with information, but maybe we only need the names. We can run `who | awk '{print $1}'` to get just a list of that first column. + +![](Images/Day15_Linux28.png) + +If you are looking to read streams of data from standard input, then generates and executes command lines; meaning it can take output of a command and passes it as argument of another command. `xargs` is a useful tool for this use case. If for example I want a list of all the Linux user accounts on the system I can run. `cut -d: -f1 < /etc/passwd` and get the long list we see below. + +![](Images/Day15_Linux29.png) + +If I want to compact that list I can do so by using `xargs` in a command like this `cut -d: -f1 < /etc/passwd | sort | xargs` + +![](Images/Day15_Linux30.png) + +I didn't mention the `cut` command either, this allows us to remove sections from each line of a file. It can be used to cut parts of a line by byte position, character and field. The `cut -d " " -f 2 list.txt` command allows us to remove that first letter we have and just display our numbers. There are so many combinations that can be used here with this command, I am sure I have spent too much time trying to use this command when I could have extracted data quicker manually. + +![](Images/Day15_Linux31.png) + +Also to note if you type a command and you are no longer with happy with it and you want to start again just hit control + c and this will cancel that line and start you fresh. + +## Resources + +- [Learn the Linux Fundamentals - Part 1](https://www.youtube.com/watch?v=kPylihJRG70) +- [Linux for hackers (don't worry you don't need be a hacker!)](https://www.youtube.com/watch?v=VbEx7B_PTOE) + +See you on [Day16](day16.md) + +This is a pretty heavy list already but I can safely say that I have used all of these commands in my day to day, be it from an administering Linux servers or in my Linux Desktop, it is very easy when you are in Windows or macOS to navigate the UI but in Linux Servers they are not there, everything is done through the terminal. + + + + + + + + + + + + + + + + + + diff --git a/zh_tw/Days/day16.md b/zh_tw/Days/day16.md new file mode 100644 index 000000000..2e2f15130 --- /dev/null +++ b/zh_tw/Days/day16.md @@ -0,0 +1,165 @@ +--- +title: '#90DaysOfDevOps - Managing your Linux System, Filesystem & Storage - Day 16' +published: false +description: '90DaysOfDevOps - Managing your Linux System, Filesystem & Storage' +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048702 +--- +## Managing your Linux System, Filesystem & Storage + +So far we have had a brief overview of Linux and DevOps and then we got our lab environment set up using vagant [(Day 14)](day14.md), we then touched on a small portion of commands that will be in your daily toolkit when in the terminal and getting things done [(Day 15)](day15.md). + +Here we are going to look into three key areas of looking after your Linux systems with updates, installing software, understanding what system folders are used for and we will also take a look at storage. + +## Managing Ubuntu & Software + +The first thing we are going to look at is how we update our operating system. Most of you will be familiar with this process in a Windows OS and macOS, this looks slightly different on a Linux desktop and server. + +We are going to be looking at the apt package manager, this is what we are going to use on our Ubuntu VM for updates and software installation. + +Generally, at least on dev workstations, I run this command to make sure that I have the latest available updates from the central repositories, before any software installation. + +`sudo apt-get update` + +![](Images/Day16_Linux1.png) + +Now we have an updated Ubuntu VM with the latest OS updates installed. We now want to get some software installed here. + +Let's choose `figlet` which is a program that generates text banners. + +If we type `figlet` in our terminal you are going to see that we do not have it installed on our system. + +![](Images/Day16_Linux2.png) + +You will see from the above though that it does give us some `apt` install options that we could try. This is because in the default repositories there is a program called figlet. Let's try `sudo apt install figlet` + +![](Images/Day16_Linux3.png) + +We can now use our `figlet` app as you can see below. + +![](Images/Day16_Linux4.png) + +If we want to remove that or any of our software installations we can also do that via the `apt` package manager. + +`sudo apt remove figlet` + +![](Images/Day16_Linux5.png) + +There are third party repositories that we can also add to our system, the ones we have access to out of the box are the Ubuntu default repositories. + +If for example, we wanted to install vagrant on our Ubuntu VM we would not be able to right now and you can see this below on the first command issued. We then add the key to trust the HashiCorp repository, then add the repository to our system. + +![](Images/Day16_Linux6.png) + +Once we have the HashiCorp repository added we can go ahead and run `sudo apt install vagrant` and get vagrant installed on our system. + +![](Images/Day16_Linux7.png) + +There are so many options when it comes to software installation, different options for package managers, built into Ubuntu we could also use snaps for our software installations. + +Hopefully, this gives you a feel about how to manage your OS and software installations on Linux. + +## File System Explained + +Linux is made up of configuration files, if you want to change anything then you change these configuration files. + +On Windows, you have C: drive and that is what we consider the root. On Linux we have `/` this is where we are going to find the important folders on our Linux system. + +![](Images/Day16_Linux8.png) + +- `/bin` - Short for binary, the bin folder is where our binaries that your system needs, executables and tools will mostly be found here. + +![](Images/Day16_Linux9.png) + +- `/boot` - All the files your system needs to boot up. How to boot up, and what drive to boot from. + +![](Images/Day16_Linux10.png) + +- `/dev` - You can find device information here, this is where you will find pointers to your disk drives `sda` will be your main OS disk. + +![](Images/Day16_Linux11.png) + +- `/etc` Likely the most important folder on your Linux system, this is where the majority of your configuration files. + +![](Images/Day16_Linux12.png) + +- `/home` - this is where you will find your user folders and files. We have our vagrant user folder. This is where you will find your `Documents` and `Desktop` folders that we worked in for the commands section. + +![](Images/Day16_Linux13.png) + +- `/lib` - We mentioned that `/bin` is where our binaries and executables live, `/lib` is where you will find the shared libraries for those. + +![](Images/Day16_Linux14.png) + +- `/media` - This is where we will find removable devices. + +![](Images/Day16_Linux15.png) + +- `/mnt` - This is a temporary mount point. We will cover more here in the next storage section. + +![](Images/Day16_Linux16.png) + +- `/opt` - Optional software packages. You will notice here that we have some vagrant and virtual box software stored here. + +![](Images/Day16_Linux17.png) + +- `/proc` - Kernel & process information, similar to `/dev` + +![](Images/Day16_Linux18.png) + +- `/root` - To gain access you will need to sudo into this folder. The home folder for root. + +![](Images/Day16_Linux19.png) + +- `/run` -Placeholder for application states. + +![](Images/Day16_Linux20.png) + +- `/sbin` - Sudo bin, similar to the bin folder but these tools are intended for elevated superuser privileges on the system. + +![](Images/Day16_Linux21.png) + +- `/tmp` - temporary files. + +![](Images/Day16_Linux22.png) + +- `/usr` - If we as a standard user have installed software packages it would generally be installed in the `/usr/bin` location. + +![](Images/Day16_Linux23.png) + +- `/var` - Our applications get installed in a `bin` folder. We need somewhere to store all of the log files this is `/var` + +![](Images/Day16_Linux24.png) + +## Storage + +When we come to a Linux system or any system we might want to know the available disks and how much free space we have on those disks. The next few commands will help us identify and use and manage storage. + +- `lsblk` List Block devices. `sda` is our physical disk and then `sda1, sda2, sda3` are our partitions on that disk. + +![](Images/Day16_Linux25.png) + +- `df` gives us a little more detail about those partitions, total, used and available. You can parse other flags here I generally use `df -h` to give us a human output of the data. + +![](Images/Day16_Linux26.png) + +If you were adding a new disk to your system and this is the same in Windows you would need to format the disk in disk management, in the Linux terminal you can do this by using the `sudo mkfs -t ext4 /dev/sdb` with sdb relating to our newly added disk. + +We would then need to mount our newly formatted disk so that it was useable. We would do this in our `/mnt` folder previously mentioned and we would create a directory there with `sudo mkdir NewDisk` we would then use `sudo mount /dev/sdb newdisk` to mount the disk to that location. + +It is also possible that you will need to unmount storage from your system safely vs just pulling it from the configuration. We can do this with `sudo umount /dev/sdb` + +If you did not want to unmount that disk and you were going to be using this disk for a database or some other persistent use case then you want it to be there when you reboot your system. For this to happen we need to add this disk to our `/etc/fstab` configuration file for it to persist, if you don't it won't be useable when the machine reboots and you would manually have to go through the above process. The data will still be there on the disk but it won't automount unless you add the configuration to this file. + +Once you have edited the `fstab` configuration file you can check your workings with `sudo mount -a` if no errors then your changes will now be persistent across restarts. + +We will cover how you would edit a file using a text editor in a future session. + +## Resources + +- [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) + +See you on [Day17](day17.md) diff --git a/zh_tw/Days/day17.md b/zh_tw/Days/day17.md new file mode 100644 index 000000000..7996aeed9 --- /dev/null +++ b/zh_tw/Days/day17.md @@ -0,0 +1,85 @@ +--- +title: '#90DaysOfDevOps - Text Editors - nano vs vim - Day 17' +published: false +description: 90DaysOfDevOps - Text Editors - nano vs vim +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048703 +--- +## Text Editors - nano vs vim + +The majority of your Linux systems are going to be servers and these are not going to have a GUI. I also mentioned in the last session that Linux is mostly made up of configuration files, to make changes you are going to need to be able to edit those configuration files to change anything on the system. + +There are lots of options out there but I think we should cover probably the two most common terminal text editors. I have used both of these editors and for me, I find `nano` the easy button when it comes to quick changes but `vim` has such a broad set of capabilities. + +### nano + +- Not available on every system. +- Great for getting started. + +If you run `nano 90DaysOfDevOps.txt` we will create a new file with nothing in, from here we can add our text and we have our instructions below for what we want to do with that file. + +![](Images/Day17_Linux1.png) + +We can now use `control x + enter` and then run `ls` you can now see our new text file. + +![](Images/Day17_Linux2.png) + +We can now run `cat` against that file to read our file. We can then use that same `nano 90DaysOfDevOps.txt` to add additional text or modify your file. + +For me, nano is super easy when it comes to getting small changes done on configuration files. + +### vim + +Possibly the most common text editor around? A sibling of the UNIX text editor vi from 1976 we get a lot of functionality with vim. + +- Pretty much supported on every single Linux distribution. +- Incredibly powerful! You can likely find a full 7-hour course just covering vim. + +We can jump into vim with the `vim` command or if we want to edit our new txt file we could run `vim 90DaysOfDevOps.txt` but you are going to first see the lack of help menus at the bottom. + +The first question might be "How do I exit vim?" that is going to be `escape` and if we have not made any changes then it will be `:q` + +![](Images/Day17_Linux3.png) + +You start in `normal` mode, there are other modes `command, normal, visual, insert` , if we want to add the text we will need to switch from `normal` to `insert` we need to press `i` if you have added some text and would like to save these changes then you would hit escape and then `:wq` + +![](Images/Day17_Linux4.png) + +![](Images/Day17_Linux5.png) + +You can confirm this with the `cat` command to check you have saved those changes. + +There is some cool fast functionality with vim that allows you to do menial tasks very quickly if you know the shortcuts which is a lecture in itself. Let's say we have added a list of repeated words and we now need to change that, maybe it's a configuration file and we repeat a network name and now this has changed and we quickly want to change this. I am using the word day for this example. + +![](Images/Day17_Linux6.png) + +Now we want to replace that word with 90DaysOfDevOps, we can do this by hitting `esc` and typing `:%s/Day/90DaysOfDevOps` + +![](Images/Day17_Linux7.png) + +The outcome when you hit enter is that the word day is then replaced with 90DaysOfDevOps. + +![](Images/Day17_Linux8.png) + +Copy and Paste was a big eye-opener for me. Copy is not copy it is yank. we can copy using `yy` on our keyboard in normal mode. `p` paste on the same line, `P` paste on a new line. + +You can also delete these lines by choosing the number of lines you wish to delete followed by `dd` + +There is also likely a time you will need to search a file, now we can use `grep` as mentioned in a previous session but we can also use vim. we can use `/word` and this will find the first match, to navigate through to the next you will use the `n` key and so on. + +For vim this is not even touching the surface, the biggest advice I can give is to get hands-on and use vim wherever possible. + +A common interview question is what is your favourite text editor in Linux and I would make sure you have at least this knowledge of both so you can answer, it is fine to say nano because it's simple. At least you show competence in understanding what a text editor is. But get hands-on with them to be more proficient. + +Another pointer to navigate around in vim we can use `H,J,K,L` as well as our arrow keys. + +## Resources + +- [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) + +See you on [Day18](day18.md) diff --git a/zh_tw/Days/day18.md b/zh_tw/Days/day18.md new file mode 100644 index 000000000..06cae6de5 --- /dev/null +++ b/zh_tw/Days/day18.md @@ -0,0 +1,208 @@ +--- +title: '#90DaysOfDevOps - SSH & Web Server - Day 18' +published: false +description: 90DaysOfDevOps - SSH & Web Server +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048733 +--- +## SSH & Web Server + +As we have mentioned throughout you are going to most likely be managing lots of remote Linux servers, because of this, you will need to make sure that your connectivity to these remote servers is secure. In this section, we want to cover some of the basics of SSH that everyone should know that will help you with that secure tunnel to your remote systems. + +- Setting up a connection with SSH +- Transferring files +- Create your private key + +### SSH introduction + +- Secure shell +- Networking Protocol +- Allows secure communications +- Can secure any network service +- Typically used for remote command-line access + +In our environment, if you have been following along we have been using SSH already but this was all configured and automated through our vagrant configuration so we only had to run `vagrant ssh` and we gained access to our remote virtual machine. + +If our remote machine was not on the same system as our workstation and was in a remote location, maybe a cloud-based system or running in a data centre that we could only access over the internet we would need a secure way of being able to access the system to manage it. + +SSH provides a secure tunnel between client and server so that nothing can be intercepted by bad actors. + +![](Images/Day18_Linux1.png) + +The server has a server-side SSH service always running and listening on a specific TCP port (22). + +If we use our client to connect with the correct credentials or SSH key then we gain access to that server. + +### Adding a bridged network adapter to our system + +In order for us to use this with our current virtual box VM, we need to add a bridged network adapter to our machine. + +Power down your virtual machine, right-click on your machine within Virtual Box and select settings. In the new window then select networking. + +![](Images/Day18_Linux2.png) + +Now power your machine back on and you will now have an IP address on your local machine. You can confirm this with the `ip addr` command. + +### Confirming SSH server is running + +We know SSH is already configured on our machine as we have been using it with vagrant but we can confirm by running + +`sudo systemctl status ssh` + +![](Images/Day18_Linux3.png) + +If your system does not have the SSH server then you can install it by issuing this command `sudo apt install openssh-server` + +You then want to make sure that our SSH is allowed if the firewall is running. We can do this with `sudo ufw allow ssh` this is not required on our configuration as we automated this with our vagrant provisioning. + +### Remote Access - SSH Password + +Now that we have our SSH Server listening out on port 22 for any incoming connection requests and we have added the bridged networking we could use putty or an SSH client on our local machine to connect into our system using SSH. + +![](Images/Day18_Linux4.png) + +Then hit open, if this is the first time you have connected to this system via this IP address you will get this warning. We know that this is our system so you can choose yes. + +![](Images/Day18_Linux5.png) + +We are then prompted for our username (vagrant) and password (default password - vagrant) Below you will see we are now using our SSH client (Putty) to connect to our machine using username and password. + +![](Images/Day18_Linux6.png) + +At this stage, we are connected to our VM from our remote client and we can issue our commands on our system. + +### Remote Access - SSH Key + +The above is an easy way to gain access to your systems however it still relies on username and password, if some malicious actor was to gain access to this information plus the public address or IP of your system then it could be easily compromised. This is where SSH keys are preferred. + +SSH Keys means that we provide a key pair so that both the client and server know that this is a trusted device. + +Creating a key is easy. On our local machine (Windows) We can issue the following command in fact if you have an ssh-client installed on any system I believe this same command will work? + +`ssh-keygen -t ed25519` + +I am not going to get into what `ed25519` is and means here but you can have a search if you want to learn more about [cryptography](https://en.wikipedia.org/wiki/EdDSA#Ed25519) + +![](Images/Day18_Linux7.png) + +At this point we have our created SSH key stored in `C:\Users\micha/.ssh/` + +But in order to link this with our Linux VM we need to copy the key. We can do this by using the `ssh-copy-id vagrant@192.168.169.135` + +I used Powershell to create my keys on my Windows client but there is no `ssh-copy-id` available here. There are ways in which you can do this on Windows and a small search online will find you an alternative, but I will just use git bash on my Windows machine to make the copy. + +![](Images/Day18_Linux8.png) + +We can now go back to Powershell to test that our connection now works with our SSH Keys and no password is required. + +`ssh vagrant@192.168.169.135` + +![](Images/Day18_Linux9.png) + +We could secure this further if needed by using a passphrase. We could also go one step further saying that no passwords at all meaning only key pairs over SSH would be allowed. You can make this happen in the following configuration file. + +`sudo nano /etc/ssh/sshd_config` + +there is a line in here with `PasswordAuthentication yes` this will be `#` commented out, you should uncomment and change the yes to no. You will then need to reload the SSH service with `sudo systemctl reload sshd` + +## Setting up a Web Server + +Not specifically related to what we have just done with SSH above but I wanted to include this as this is again another task that you might find a little daunting but it really should not be. + +We have our Linux playground VM and at this stage, we want to add an apache webserver to our VM so that we can host a simple website from it that serves out to my home network. Note that this web page will not be accessible from the internet, this can be done but it will not be covered here. + +You might also see this referred to as a LAMP stack. + +- **L**inux Operating System +- **A**pache Web Server +- **m**ySQL database +- **P**HP + +### Apache2 +Apache2 is an open-source HTTP server. We can install apache2 with the following command. + +`sudo apt-get install apache2` + +To confirm that apache2 is installed correctly we can run `sudo service apache2 restart` + +Then using the bridged network address from the SSH walkthrough open a browser and go to that address. Mine was `http://192.168.169.135/` + +![](Images/Day18_Linux10.png) + +### mySQL +MySQL is a database in which we will be storing our data for our simple website. To get MySQL installed we should use the following command `sudo apt-get install mysql-server` + +### PHP +PHP is a server-side scripting language, we will use this to interact with a MySQL database. The final installation is to get PHP and dependencies installed using `sudo apt-get install php libapache2-mod-php php-mysql` + +The first configuration change we want to make it out of the box apache is using index.html and we want it to use index.php instead. + +We are going to use `sudo nano /etc/apache2/mods-enabled/dir.conf` and we are going to move index.php to the first item in the list. + +![](Images/Day18_Linux11.png) + +Restart the apache2 service `sudo systemctl restart apache2` + +Now let's confirm that our system is configured correctly for PHP. Create the following file using this command, this will open a blank file in nano. + +`sudo nano /var/www/html/90Days.php` + +then copy the following and use control + x to exit and save your file. + +``` + +``` + +Now navigate to your Linux VM IP again with the additional 90Days.php on the end of the URL. `http://192.168.169.135/90Days.php` you should see something similar to the below if PHP is configured correctly. + +![](Images/Day18_Linux12.png) + +### WordPress Installation + +I then walked through this tutorial to get WordPress up on our LAMP stack, some commands are shown below if not shown correctly in the walkthrough [How to install wordpress on Ubuntu with LAMP](https://blog.ssdnodes.com/blog/how-to-install-wordpress-on-ubuntu-18-04-with-lamp-tutorial/) + + +`sudo mysql -u root -p` + +`CREATE DATABASE wordpressdb;` + +`CREATE USER 'admin-user'@'localhost' IDENTIFIED BY 'password';` + +`GRANT ALL PRIVILEGES ON wordpressdb.* TO 'admin-user'@'localhost';` + +`FLUSH PRIVILEGES;` + +`EXIT;` + +`sudo apt install php-curl php-gd php-mbstring php-xml php-xmlrpc php-soap php-intl php-zip` + +`sudo systemctl restart apache2` + +`cd /var/www` + +`sudo curl -O https://wordpress.org/latest.tar.gz` + +`sudo tar -xvf latest.tar.gz` + +`sudo rm latest.tar.gz` + +At this point you are Step 4 in the linked article, you will need to follow the steps to make sure all correct permissions are in place for the WordPress directory. + +Because this is internal only you do not need to "generate security keys" in this step. Move to Step 5 which is changing the Apache configuration to WordPress. + +Then providing everything is configured correctly you will be able to access via your internal network address and run through the WordPress installation. + +## Resources + +- [Client SSH GUI - Remmina](https://remmina.org/) +- [The Beginner's guide to SSH](https://www.youtube.com/watch?v=2QXkrLVsRmk) +- [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) + +See you on [Day19](day19.md) diff --git a/zh_tw/Days/day19.md b/zh_tw/Days/day19.md new file mode 100644 index 000000000..766e026c0 --- /dev/null +++ b/zh_tw/Days/day19.md @@ -0,0 +1,306 @@ +--- +title: '#90DaysOfDevOps - Automate tasks with bash scripts - Day 19' +published: false +description: 90DaysOfDevOps - Automate tasks with bash scripts +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048774 +--- +## Automate tasks with bash scripts + +The shell that we are going to use today is the bash but we will cover another shell tomorrow when we dive into ZSH. + +BASH - **B**ourne **A**gain **Sh**ell + +We could almost dedicate a whole section of 7 days to shell scripting much like the programming languages, bash gives us the capability of working alongside other automation tools to get things done. + +I still speak to a lot of people where they have set up some complex shell scripts to make something happen and they rely on this script for some of the most important things in the business, I am not saying we need to understand shell/bash scripting for this purpose, this is not the way. But we should learn shell/bash scripting to work alongside our automation tools and for ad-hoc tasks. + +An example of this that we have used in this section could be the VAGRANTFILE we used to create our VM, we could wrap this into a simple bash script that deleted and renewed this every Monday morning so that we have a fresh copy of our Linux VM every week, we could also add all the software stack that we need on said Linux machine and so on all through this one bash script. + +I think another thing I am at least hearing is that hands-on scripting questions are becoming more and more apparent in all lines of interviews. + +### Getting started + +As with a lot of things we are covering in this whole 90 days, the only real way to learn is through doing. Hands-on experience is going to help soak all of this into your muscle memory. + +First of all, we are going to need a text editor. On [Day 17](Day17.md) we covered probably the two most common text editors and a little on how to use them. + +Let's get straight into it and create our first shell script. + +`touch 90DaysOfDevOps.sh` + +Followed by `nano 90DaysOfDevOps.sh` this will open our new blank shell script in nano. Again you can choose your text editor of choice here. + +The first line of all bash scripts will need to look something like this `#!/usr/bin/bash` this is the path to your bash binary. + +You should however check this in the terminal by running `which bash` if you are not using Ubuntu then you might also try `whereis bash` from the terminal. + +However, you may see other paths listed in already created shell scripts which could include: + +- `#!/bin/bash` +- `#!/usr/bin/env bash` + +In the next line in our script, I like to add a comment and add the purpose of the script or at least some information about me. You can do this by using the `#` This allows us to comment out particular lines in our code and provide descriptions for what the upcoming commands will be doing. I find the more notes the better for the user experience especially if you are sharing this. + +I sometimes use figlet, a program we installed earlier in the Linux section to create some asci art to kick things off in our scripts. + +![](Images/Day19_Linux1.png) + +All of the commands we have been through earlier in this Linux section ([Day15](Day15.md)) could be used here as a simple command to test our script. + +Let's add a simple block of code to our script. + +``` +mkdir 90DaysOfDevOps +cd 90DaysOfDevOps +touch Day19 +ls +``` +You can then save this and exit your text editor, if we run our script with `./90DaysOfDevOps.sh` you should get a permission denied message. You can check the permissions of this file using the `ls -al` command and you can see highlighted we do not have executable rights on this file. + +![](Images/Day19_Linux2.png) + +We can change this using `chmod +x 90DaysOfDevOps.sh` and then you will see the `x` meaning we can now execute our script. + +![](Images/Day19_Linux3.png) + +Now we can run our script again using `./90DaysOfDevOps.sh` after running the script has now created a new directory, changed into that directory and then created a new file. + +![](Images/Day19_Linux4.png) + +Pretty basic stuff but you can start to see hopefully how this could be used to call on other tools as part of ways to make your life easier and automate things. + +### Variables, Conditionals +A lot of this section is really a repeat to what we covered when we were learning Golang but I think its worth us diving in here again. + +- ### Variables + +Variables enable us to define once a particular repeated term that is used throughout a potentially complex script. + +To add a variable you simply add it like this to a clean line in your script. + +`challenge="90DaysOfDevOps"` + +This way when and where we use `$challenge` in our code, if we change the variable it will be reflected throughout. + +![](Images/Day19_Linux5.png) + +If we now run our `sh` script you will see the printout that was added to our script. + +![](Images/Day19_Linux5.png) + +We can also ask for user input that can set our variables using the following: + +``` +echo "Enter your name" +read name +``` + +This would then define the input as the variable `$name` We could then use this later on. + +- ### Conditionals + +Maybe we want to find out who we have on our challenge and how many days they have completed, we can define this using `if` `if-else` `else-if` conditionals, this is what we have defined below in our script. + +``` +#!/bin/bash +# ___ ___ ____ ___ __ ____ ___ +# / _ \ / _ \| _ \ __ _ _ _ ___ / _ \ / _| _ \ _____ __/ _ \ _ __ ___ +#| (_) | | | | | | |/ _` | | | / __| | | | |_| | | |/ _ \ \ / / | | | '_ \/ __| +# \__, | |_| | |_| | (_| | |_| \__ \ |_| | _| |_| | __/\ V /| |_| | |_) \__ \ +# /_/ \___/|____/ \__,_|\__, |___/\___/|_| |____/ \___| \_/ \___/| .__/|___/ +# |___/ |_| +# +# This script is to demonstrate bash scripting! + +# Variables to be defined + +ChallengeName=#90DaysOfDevOps +TotalDays=90 + +# User Input + +echo "Enter Your Name" +read name +echo "Welcome $name to $ChallengeName" +echo "How Many Days of the $ChallengeName challenge have you completed?" +read DaysCompleted + +if [ $DaysCompleted -eq 90 ] +then + echo "You have finished, well done" +elif [ $DaysCompleted -lt 90 ] +then + echo "Keep going you are doing great" +else + echo "You have entered the wrong amount of days" +fi +``` +You can also see from the above that we are running some comparisons or checking values against each other to move on to the next stage. We have different options here worth noting. + +- `eq` - if the two values are equal will return TRUE +- `ne` - if the two values are not equal will return TRUE +- `gt` - if the first value is greater than the second value will return TRUE +- `ge` - if the first value is greater than or equal to the second value will return TRUE +- `lt` - if the first value is less than the second value will return TRUE +- `le` - if the first value is less than or equal to the second value will return TRUE + +We might also use bash scripting to determine information about files and folders, this is known as file conditions. + +- `-d file` True if the file is a directory +- `-e file` True if the file exists +- `-f file` True if the provided string is a file +- `g file` True if the group id is set on a file +- `-r file` True if the file is readable +- `-s file` True if the file has a non-zero size + +``` +FILE="90DaysOfDevOps.txt" +if [ -f "$FILE" ] +then + echo "$FILE is a file" +else + echo "$FILE is not a file" +fi +``` + +![](Images/Day19_Linux7.png) + +Providing we have that file still in our directory we should get the first echo command back. But if we remove that file then we should get the second echo command. + +![](Images/Day19_Linux8.png) + +You can hopefully see how this can be used to save you time when searching through a system for specific items. + +I found this amazing repository on GitHub that has what seems to be an endless amount of scripts [DevOps Bash Tools](https://github.com/HariSekhon/DevOps-Bash-tools/blob/master/README.md) + +### Example + +**Scenario**: We have our company called "90DaysOfDevOps" and we have been running a while and now it is time to expand the team from 1 person to lots more over the coming weeks, I am the only one so far that knows the onboarding process so we want to reduce that bottleneck by automating some of these tasks. + +**Requirements**: +- A user can be passed in as a command line argument. +- A user is created with the name of command line argument. +- A password can be parsed in as a command line argument. +- The password is set for the user +- A message of successful account creation is displayed. + +Let's start with creating our shell script with `touch create_user.sh` + +Before we move on lets also make this executable using `chmod +x create_user.sh` + +then we can use `nano create_user.sh` to start editing our script for the scenario we have been set. + +We can take a look at the first requirement "A user can be passed in as a command line argument" we can use the following + +``` +#! /usr/bin/bash + +#A user can be passed in as a command line argument +echo "$1" +``` + +![](Images/Day19_Linux9.png) + +Go ahead and run this using `./create_user.sh Michael` replace Michael with your name when you run the script. + +![](Images/Day19_Linux10.png) + +Next up we can take that second requirement "A user is created with the name of command line argument" this can be done with the `useradd` command. The `-m` option is to create the user home directory as /home/username + +``` +#! /usr/bin/bash + +#A user can be passed in as a command line argument +echo "$1 user account being created." + +#A user is created with the name of command line argument +sudo useradd -m "$1" + +``` + +Warning: If you do not provide a user account name then it will error as we have not filled the variable `$1` + +We can then check this account has been created with the `awk -F: '{ print $1}' /etc/passwd` command. + +![](Images/Day19_Linux11.png) + +Our next requirement is "A password can be parsed in as a command line argument." First of all we are not going to ever do this in production it is more for us to work through a list of requirements in the lab to understand. + +``` +#! /usr/bin/bash + +#A user can be passed in as a command line argument +echo "$1 user account being created." + +#A user is created with the name of command line argument +sudo useradd -m "$1" + +#A password can be parsed in as a command line argument. +sudo chpasswd <<< "$1":"$2" +``` + +If we then run this script with the two parameters `./create_user.sh 90DaysOfDevOps password` + +You can see from the below image that we executed our script it created our user and password and then we manually jumped into that user and confirmed with the `whoami` command. + +![](Images/Day19_Linux12.png) + +The final requirement is "A message of successful account creation is displayed." We actually already have this in the top line of our code and we can see on the above screen shot that we have `90DaysOfDevOps user account being created` is shown. This was left from our testing with the `$1` parameter. + +Now this script can be used to quickly onboard and set up new users on to our Linux systems. But maybe instead of a few of the historic people having to work through this and then having to get other people their new usernames or passwords we could add some user input that we have previously covered earlier on to capture our variables. + +``` +#! /usr/bin/bash + +echo "What is your intended username?" +read username +echo "What is your password" +read password + +#A user can be passed in as a command line argument +echo "$username user account being created." + +#A user is created with the name of command line argument +sudo useradd -m $username + +#A password can be parsed in as a command line argument. +sudo chpasswd <<< $username:$password +``` + +With the steps being more interactive, + +![](Images/Day19_Linux14.png) + +Just to finish this off maybe we do want to output a successful output to say that our new user account has finished being created. + +![](Images/Day19_Linux15.png) + +One thing I did notice was that we are displaying the password on our input we can hide this by using the `-s` flag in the line of code `read -s password` + +![](Images/Day19_Linux16.png) + +If you do want to delete the user you have created for lab purposes then you can do that with `sudo userdel test_user` + +[Example Script](Linux/create-user.sh) + +Once again I am not saying this is going to be something that you do create in your day to day but it was something I thought of that would highlight the flexibility of what you could use shell scripting for. + +Think about any repeatable tasks that you do every day or week or month and how could you better automate that, first option is likely going to be using a bash script before moving into more complex territory. + +I have created a very simple bash file that helps me spin up a Kubernetes cluster using minikube on my local machine along with data services and Kasten K10 to help demonstrate the requirements and needs around data management. [Project Pace](https://github.com/MichaelCade/project_pace/blob/main/singlecluster_demo.sh) But I did not feel this appropriate to raise here as we have not covered Kubernetes yet. + +## Resources + +- [Bash in 100 seconds](https://www.youtube.com/watch?v=I4EWvMFj37g) +- [Bash script with practical examples - Full Course](https://www.youtube.com/watch?v=TPRSJbtfK4M) +- [Client SSH GUI - Remmina](https://remmina.org/) +- [The Beginner's guide to SSH](https://www.youtube.com/watch?v=2QXkrLVsRmk) +- [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) + +See you on [Day20](day20.md) diff --git a/zh_tw/Days/day20.md b/zh_tw/Days/day20.md new file mode 100644 index 000000000..f826b2bb1 --- /dev/null +++ b/zh_tw/Days/day20.md @@ -0,0 +1,163 @@ +--- +title: '#90DaysOfDevOps - Dev workstation setup - All the pretty things - Day 20' +published: false +description: 90DaysOfDevOps - Dev workstation setup - All the pretty things +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048734 +--- +## Dev workstation setup - All the pretty things + +Not to be confused with us setting Linux servers up this way but I wanted to also show off the choice and flexibility that we have within the Linux desktop. + +I have been using a Linux Desktop for almost a year now and I have it configured just the way I want from a look and feel perspective. Using our Ubuntu VM on Virtual Box we can run through some of the customisations I have made to my daily driver. + +I have put together a YouTube video walking through the rest as some people might be able to better follow along: + +[![Click to access YouTube Video](Images/Day20_YouTube.png)](https://youtu.be/jeEslAtHfKc) + +Out of the box our system will look something like the below: + +![](Images/Day20_Linux1.png) + +We can also see our default bash shell below, + +![](Images/Day20_Linux2.png) + +A lot of this comes down to dotfiles something we will cover in this final Linux session of the series. + +### dotfiles +First up I want to dig into dotfiles, I have said in a previous day that Linux is made up of configuration files. These dotfiles are configuration files for your Linux system and applications. + +I will also add that dotfiles are not just used to customise and make your desktop look pretty, there are also dotfile changes and configurations that will help you with productivity. + +As I mentioned many software programs store their configurations in these dotfiles. These dotfiles assist in managing functionality. + +Each dotfile starts with a `.` You can probably guess where the naming came from? + +So far we have been using bash as our shell which means you will have a .bashrc and .bash_profile in our home folder. You can see below a few dotfiles we have on our system. + +![](Images/Day20_Linux3.png) + +We are going to be changing our shell, so we will later be seeing a new `.zshrc` configuration dotfile. + +But now you know if we refer to dotfiles you know they are configuration files. We can use them to add aliases to our command prompt as well as paths to different locations. Some people publish their dotfiles so they are publicly available. You will find mine here on my GitHub [MichaelCade/dotfiles](https://github.com/MichaelCade/dotfiles) here you will find my custom `.zshrc` file, my terminal of choice is terminator which also has some configuration files in the folder and then also some background options. + +### ZSH +As I mentioned throughout our interactions so far we have been using a bash shell the default shell with Ubuntu. ZSH is very similar but it does have some benefits over bash. + +Zsh has features like interactive Tab completion, automated file searching, regex integration, advanced shorthand for defining command scope, and a rich theme engine. + +We can use our `apt` package manager to get zsh installed on our system. Let's go ahead and run `sudo apt install zsh` from our bash terminal. I am going to do this from within the VM console vs being connected over SSH. + +When the installation command is complete you can run `zsh` inside your terminal, this will then start a shell configuration script. + +![](Images/Day20_Linux4.png) + +I selected `1` to the above question and now we have some more options. + +![](Images/Day20_Linux5.png) + +You can see from this menu you we can make some out of the box edits to make ZSH configured to our needs. + +If you exit the wizard with a `0` and then use the `ls -al | grep .zshrc` you should see we have a new configuration file. + +Now we want to make zsh our default shell every time we open our terminal, we can do this by running the following command to change our shell `chsh -s $(which zsh)` we then need to log out and back in again for the changes to take place. + +When you log back and open a terminal it should look something like this. We can also confirm our shell has now been changed over by running `which $SHELL` + +![](Images/Day20_Linux6.png) + +I generally perform this step on each Ubuntu desktop I spin up and find in general without going any further that the zsh shell is a little faster than bash. + +### OhMyZSH + +Next up we want to make things look a little better and also add some functionality to help us move around within the terminal. + +OhMyZSH is a free and open source framework for managing your zsh configuration. There are lots of plugins, themes and other things that just make interacting with the zsh shell a lot nicer. + +You can find out more about [ohmyzsh](https://ohmyz.sh/) + +Let's get Oh My ZSH installed, we have a few options with `curl` `wget` or `fetch` we have the first two available on our system but I will lead with `curl` + +`sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"` + +When you have run the above command you should see some output like below. + +![](Images/Day20_Linux7.png) + + Now we can move on to start putting a theme in for our experience, there are well over 100 bundled with Oh My ZSH but my go to for all of my applications and everything is the dracula theme. + + I also want to add that these two plugins are a must when using Oh My ZSH. + + `git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions` + + `git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting` + + `nano ~/.zshrc` + + edit the plugins to now include `plugins=(git zsh-autosuggestions zsh-syntax-highlighting)` + +## Gnome Extensions + +I also use Gnome extensions, and in particular the list below + +[Gnome extensions](https://extensions.gnome.org) + + - Caffeine + - CPU Power Manager + - Dash to Dock + - Desktop Icons + - User Themes + +## Software Installation + +A short list of the programs I install on the machine using `apt` + + - VSCode + - azure-cli + - containerd.io + - docker + - docker-ce + - google-cloud-sdk + - insomnia + - packer + - terminator + - terraform + - vagrant + +### Dracula theme + +This site is the only theme I am using at the moment. Looks clear, clean and everything looks great. [Dracula Theme](https://draculatheme.com/) It also has you covered when you have lots of other programs you use on your machine. + +From the link above we can search for zsh on the site and you will find at least two options. + +Follow the instructions listed to insall either manually or using git. Then you will need to finally edit your `.zshrc` configuration file as per below. + +![](Images/Day20_Linux8.png) + +You are next going to want the [Gnome Terminal Dracula theme](https://draculatheme.com/gnome-terminal) with all instructions available here as well. + +It would actually take a long time for me to document each and every step so I created a video walkthrough of the process. (**Click on the image below**) + +[![](Images/Day20_YouTube.png)](https://youtu.be/jeEslAtHfKc) + +If you made it this far, then we have now finished our Linux section of the #90DaysOfDevOps. Once again I am open for feedback and additions to resources here. + +I also thought on this it was easier to show you a lot of the steps through video vs writing them down here, what do you think to this? I do have a goal to work back through these days and where possible creating video walkthroughs to add in and better maybe explain and show some of the things we have covered. What do you think? + +## Resources + +- [Bash in 100 seconds](https://www.youtube.com/watch?v=I4EWvMFj37g) +- [Bash script with practical examples - Full Course](https://www.youtube.com/watch?v=TPRSJbtfK4M) +- [Client SSH GUI - Remmina](https://remmina.org/) +- [The Beginner's guide to SSH](https://www.youtube.com/watch?v=2QXkrLVsRmk) +- [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) + +Tomorrow we start our 7 days of diving into Networking, we will be looking to give ourselves the foundational knowledge and understanding of Networking around DevOps. + +See you on [Day21](day21.md) diff --git a/zh_tw/Days/day21.md b/zh_tw/Days/day21.md new file mode 100644 index 000000000..de19cd8f4 --- /dev/null +++ b/zh_tw/Days/day21.md @@ -0,0 +1,106 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: DevOps and Networking - Day 21' +published: false +description: 90DaysOfDevOps - The Big Picture DevOps and Networking +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048761 +--- +## The Big Picture: DevOps and Networking + +Welcome to Day 21! We are going to be getting into Networking over the next 7 days, Networking and DevOps is the overarching theme but we will need to get into some of the networking fundamentals as well. + +Ultimately as we have said previously DevOps is about a culture and process change within your organisations this as we have discussed can be Virtual Machines, Containers, Kubernetes but it can also be the network, If we are using those DevOps principles for our infrastructure that has to include the network more to the point from a DevOps point of view you also need to know about the network as in the different topologies and networking tools and stacks that we have available. + +I would argue that we should have our networking devices configured using infrastructure as code and have everything automated like we would our virtual machines, but in order to do that we have to have a good understanding of what we are automating. + +### What is NetDevOps | Network DevOps? + +You may also hear the terms Network DevOps or NetDevOps. Maybe you are already a Network engineer and have a great grasp on the network components within the infrastructure you understand the elements used around networking such as DHCP, DNS, NAT etc etc. You will also have a good understanding around the hardware or software defined networking options, switches, routers etc etc. + +But if you are not a network engineer then we probably need to get a foundational knowledge across the board on some of those areas so that we can understand the end goal of Network DevOps. + +But in regards to those terms we can think of NetDevOps or Network DevOps as applying the DevOps Principles and Practices to the network, applying version control and automation tools to the network creation, testing, monitoring, and deployments. + +If we think of Network DevOps of having to require automation, we mentioned before about DevOps breaking down the siloes between teams. If the networking teams do not change to a similar model and process then they become the bottleneck or even the failure overall. + +Using the automation principles around provisioning, configuration, testing, version control and deployment is a great start. Automation is overall going to enable speed of deployment, stability of the networking infrastructure and consistent improvement as well as the process being shared across multiple environments once they have been tested. Such as a fully tested Network Policy that has been fully tested on one environment can be used quickly in another location because of the nature of this being in code vs a manually authored process which it might have been before. +A really good view point and outline of this thinking can be found here. [Network DevOps](https://www.thousandeyes.com/learning/techtorials/network-devops) + +## Networking The Basics + +Let's forget the DevOps side of things to begin with here and we now need to look very briefly into some of the Networking fundamentals. + +### Network Devices + +**Host** are any devices which sends or recieve traffic. + +![](Images/Day21_Networking1.png) + +**IP Address** the identity of each host. + +![](Images/Day21_Networking2.png) + +**Network** is what transports traffic between hosts. If we did not have networks there would be a lot of manual movement of data! + +A logical group of hosts which require similar connectivity. + +![](Images/Day21_Networking3.png) + +**Switches** facilitate communication ***within*** a network. A switch forwards data packets between hosts. A switch sends packets directly to hosts. + +- Network: A Grouping of hosts which require similar connectivity. +- Hosts on a Network share the same IP address space. + +![](Images/Day21_Networking4.png) + +**Router** facilitate communication between networks. If we said before that a switch looks after communication within a network a router allows us to join these networks together or at least give them access to each other if permitted. + +A router can provide a traffic contol point (security, filtering, redirting) More and more switches also provide some of these functions now. + +Routers learn which networks they are attached to. This is known as routes, a routing table is all the networks a router knows about. + +A router has an IP address in the networks they are attached to. This IP is also going to be each hosts way out of their local network also known as a gateway. + +Routers also create the hierarchy in networks I mentioned earlier. + +![](Images/Day21_Networking5.png) + +## Switches vs Routers + +**Routing** is the process of moving data between networks. + +- A router is a device whose primary purpose is Routing. + +**Switching** is the process of moving data within networks. + +- A Switch is a device who's primary purpose is switching. + +This is very much a foundational overview of devices as we know there are many different Network Devices such as: + +- Access Points +- Firewalls +- Load Balancers +- Layer 3 Switches +- IDS / IPS +- Proxies +- Virtual Switches +- Virtual Routers + +Although all of these devices are going to perform Routing and/or Switching. + +Over the next few days we are going to get to know a little more about this list. + +- OSI Model +- Network Protocols +- DNS (Domain Name System) +- NAT +- DHCP +- Subnets + +## Resources + +[Computer Networking full course](https://www.youtube.com/watch?v=IPvYjXCsTg8) + +See you on [Day22](day22.md) diff --git a/zh_tw/Days/day22.md b/zh_tw/Days/day22.md new file mode 100644 index 000000000..923f143b7 --- /dev/null +++ b/zh_tw/Days/day22.md @@ -0,0 +1,98 @@ +--- +title: '#90DaysOfDevOps - The OSI Model - The 7 Layers - Day 22' +published: false +description: 90DaysOfDevOps - The OSI Model - The 7 Layers +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049037 +--- +## The OSI Model - The 7 Layers + +The overall purpose of networking as an industry is to allow two hosts to share data before networking if I want to get data from this host to this host I'd have to plug something into this host walk it over to the other host plug it into the other host. + +Networking allows us to automate this by allowing the host to share data automatically across the wire for these hosts to do this they must follow a set of rules. + +This is no different than any language English has a set of rules that two English speakers must follow Spanish has its own set of rules French has its own set of rules while networking also has its own set of rules + +The rules for networking are divided into seven different layers and those layers are known as the OSI model. + +### Introduction to the OSI Model + +The OSI Model (Open Systems Interconnection Model) is a framework used to describe the functions of a networking system. The OSI model characterises computing functions into a universal set of rules and requirements in order to support interoperability between different products and software. In the OSI reference model, the communications between a computing system are split into seven different abstraction layers: **Physical, Data Link, Network, Transport, Session, Presentation, and Application**. + +![](Images/Day22_Networking1.png) + +### Physical +Layer 1 in the OSI model and this is known as physical, the premise of being able to get data from one host to another through a means be it physical cable or we could also consider Wi-Fi in this layer as well. We might also see some more legacy hardware seen here around hubs and repeaters in order to transport the data from one host to another. + +![](Images/Day22_Networking2.png) + +### Data Link +Layer 2, the data link enables node to node transfer where data is packaged into frames. There is also a level of error correcting that might have occurred at the physical layer. This is also where we introduce or first see MAC addresses. + +This is where we see the first mention of switches that we covered in our first day of networking on [Day 21](day21.md) + +![](Images/Day22_Networking3.png) + +### Network +You have likely heard the term layer 3 switches or layer 2 switches. In our OSI model Layer 3, the Network has a goal of end to end delivery, this is where we see our IP addresses also mentioned in the first day overview. + +Routers and hosts exist at layer 3, remember the router is the ability to route between multiple networks. Anything with an IP could be considered Layer 3. + +![](Images/Day22_Networking4.png) + +So why do we need addressing schemes on both Layer 2 and 3? (MAC Addresses vs IP Addresses) + +If we think about getting data from one host to another, each host has an IP address but there are several switches and routers in between. Each of the devices has that layer 2 MAC address. + +The layer 2 MAC address will go from host to switch/router only, it is focused on hops where as the layer 3 IP addresses will stay with that packet of data until it reaches its end host. (End to End) + +IP Addresses - Layer 3 = End to End Delivery + +MAC Addresses - Layer 2 = Hop to Hop Delivery + +Now there is a network protocol that we will get into but not today called ARP(Address Resolution Protocol) which links our Layer3 and Layer2 addresses. + +### Transport +Service to Service delivery, Layer 4 is there to distinguish data streams. In the same way that Layer 3 and Layer 2 both had their addressing schemes in Layer 4 we have ports. + +![](Images/Day22_Networking5.png) + +### Session, Presentation, Application +Distinction between Layers 5,6,7 is or had become somewhat vague. + +It is worth looking at the [TCP IP Model](https://www.geeksforgeeks.org/tcp-ip-model/) to get a more recent understanding. + +Let's now try and explain what's actually happening when hosts are communicating to each other using this networking stack. This host has an application that's going to generate data that is meant to be sent to another host. + +The source host is going to go through is what's known as the encapsulation process. That data will be first sent to layer 4. + +Layer 4 is going to add a header to that data which can facilitate the goal of layer 4 which is service to service delivery. This is going to be a port using either TCP or UDP. It is also going to include the source port and destination port. + +This may also be known as a segment (Data and Port) + +This segment is going to be passed down the osi stack to layer 3, the network layer, the network layer is going to add another header to this data. +This header is going to facilitate the goal of layer 3 which is end to end delivery meaning in this header you will have a source ip address and a destination ip, the header plus data may also be referred to as a packet. + +Layer 3 will then take that packet and hand it off to layer 2, layer 2 will once again add another header to that data to accomplish layer 2's goal of hop to hop delivery meaning this header will include a source and destination mac address. +This is known as a frame when you have the layer 2 header and data. + +That frame then gets converted into ones and zeros and sent over the Layer 1 Physical cable or wifi. + +![](Images/Day22_Networking6.png) + +I did mention above the naming for each layer of header plus data but decided to draw this out as well. + +![](Images/Day22_Networking7.png) + +Obviously the Application sending the data is being sent somewhere so the receiving in some what in reverse to get that back up the stack and into the receiving host. + +![](Images/Day22_Networking8.png) + +## Resources + +- [Computer Networking full course](https://www.youtube.com/watch?v=IPvYjXCsTg8) +- [Practical Networking](http://www.practicalnetworking.net/) + +See you on [Day23](day23.md) diff --git a/zh_tw/Days/day23.md b/zh_tw/Days/day23.md new file mode 100644 index 000000000..44fd50d5c --- /dev/null +++ b/zh_tw/Days/day23.md @@ -0,0 +1,119 @@ +--- +title: '#90DaysOfDevOps - Network Protocols - Day 23' +published: false +description: 90DaysOfDevOps - Network Protocols +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048704 +--- +## Network Protocols + +A set of rules and messages that form a standard. An Internet Standard. + +- ARP - Address Resolution Protocol + +If you want to get really into the weeds on ARP you can read the Internet Standard here. [RFC 826](https://datatracker.ietf.org/doc/html/rfc826) + +Connects IP addresses to fixed physical machine addresses, also known as MAC addresses across a layer 2 network. + +![](Images/Day23_Networking1.png) + +- FTP - File Transfer Protocol + +Allows for the transfer of files from source to destination. Generally this process is authenticated but there is the ability if configured to use anonymous access. You will more frequently now see FTPS which provides SSL/TLS connectivity to FTP servers from the client for better security. This protocol would be found in the Application layer of the OSI Model. + +![](Images/Day23_Networking2.png) + +- SMTP - Simple Mail Transfer Protocol + +Used for email transmission, mail servers use SMTP to send and recieve mail messages. You will still find even with Microsoft 365 that the SMTP protocol is used for the same purpose. + +![](Images/Day23_Networking3.png) + +- HTTP - Hyper Text Transfer Protocol + +HTTP is the foundation of the internet and browsing content. Giving us the ability to easily access our favourite websites. HTTP is still heavily used but HTTPS is more so used or should be used on most of your favourite sites. + +![](Images/Day23_Networking4.png) + +- SSL - Secure Sockets Layer | TLS - Transport Layer Security + +TLS has taken over from SSL, TLS is a [Cryptographic Protocol]() that provides security communications over a network. It can and will be found in mail, im and other applications but most commonly it is used to secure HTTPS. + +![](Images/Day23_Networking5.png) + +- HTTPS - HTTP secured with SSL/TLS + +An extension of HTTP, used for secure communications over a network, HTTPS is encrypted with TLS as mentioned above. The focus here was to bring authenticaion, privacy and integrity whilst data is exchanged between hosts. + +![](Images/Day23_Networking6.png) + +- DNS - Domain Name System + +The DNS is used to map human-freindly domain names for example we all know [google.com](https://google.com) but if you were to open a browser and put in [8.8.8.8](https://8.8.8.8) you would get Google as we pretty much know it. However good luck trying to remember all of the IP addresses for all of your websites where some of them we even use google to find information. + +This is where DNS comes in, it ensures that hosts, services and other resources are reachable. + +On all hosts, if they require internet connectivity then they must have DNS to be able to resolve those domain names. DNS is an area you could spend Days and Years on learning. I would also say from experience that DNS is mostly the common cause of all errors when it comes to Networking. Not sure if a Network engineer would agree there though. + +![](Images/Day23_Networking7.png) + +- DHCP - Dynamic Host Configuration Protocol + +We have discussed a lot about protocols that are required to make our hosts work, be it accessing the internet or transferring files between each other. + +There are 4 things that we need on every host for it to be able to achieve both of those tasks. + +- IP Address +- Subnet Mask +- Default Gateway +- DNS + +We have covered IP address being a unique address for your host on the network it resides, we can think of this as our house number. + +Subnet mask we will cover shortly, but you can think of this as post code or zip code. + +Default gateway is the IP of our router generally on our network providing us with that Layer 3 connectivity. You could think of this as the single road that allows us out of our street. + +Then we have DNS as we just covered to help us convert complicated public IP addresses to more suitable and rememberable domain names. Maybe we can think of this as the giant sorting office to make sure we get the right post. + +As I said each host requires these 4 things, if you have 1000 or 10,000 hosts then that is going to take you a very long time to determine each one of these individually. This is where DHCP comes in and allows you to determine a scope for your network and then this protocol will distribute to all available hosts in your network. + +Another example, you head into a coffee shop, grab a coffee and sit down with your laptop or your phone lets call that your host. You connect your host to the coffee shop wifi and you gain access to the internet, messages and mail start pinging through and you can navigate web pages and social media. When you connected to the coffee shop wifi your machine would have picked up a DHCP address either from a dedicated DHCP server or most likely from the router also handling DHCP. + +![](Images/Day23_Networking8.png) + +### Subnetting + +A subnet is a logical subdivision of an IP network. + +Subnets break large networks into smaller, more manageable networks that run more efficiently. + +Each subnet is a logical subdivision of the bigger network. Connected devices with enough subnet share common IP address identifier, enabling them to communicate with each other. + +Routers manage communication between subnets. + +The size of a subnet depends on the connectivity requirements and the network technology used. + +An organisation is responsible for determining its number and size of the subnets within the limits of address space +available, and the details remain local to that organisation. Subnets can also be segmented into even smaller subnets for things like Point to Point links, or for sub networks supporting a few devices. + +Among other advantages, segmenting large +networks into subnets enables IP address +reallocation and relieves network congestion, streamlining, network communication and efficiency. + +Subnets can also improve network security. +If a section of a network is compromised, it can be quarantined, making it difficult for bad actors to move around the larger network. + +![](Images/Day23_Networking9.png) + + +## Resources + +- [Computer Networking full course](https://www.youtube.com/watch?v=IPvYjXCsTg8) +- [Practical Networking](http://www.practicalnetworking.net/) + +See you on [Day 24](day24.md) + + diff --git a/zh_tw/Days/day24.md b/zh_tw/Days/day24.md new file mode 100644 index 000000000..5cf169b14 --- /dev/null +++ b/zh_tw/Days/day24.md @@ -0,0 +1,145 @@ +--- +title: '#90DaysOfDevOps - Network Automation - Day 24' +published: false +description: 90DaysOfDevOps - Network Automation +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048805 +--- +## Network Automation + +### Basics of network automation + +Primary drivers for Network Automation +- Achieve Agility +- Reduce Cost +- Eliminate Errors +- Ensure Compliance +- Centralised Management + +The automation adoption process is specific to each business. There's no one size fits all when it comes to deploying automation, the ability to identify and embrace the approach that works best for your organisation is critical in advancing towards maintaining or creating a more agile environment, the focus should always be on business value and end-user experience. (We said something similar right at the start in regards to the whole of DevOps and the culture change and the automated process that this brings) + +To break this down you would need to identify how the task or process that you're trying to automate is going to achieve and improve the end-user experience or business value whilst following a step-by-step systematic approach. + +"If you don't know where you are going, any road will take you there." + +Having a framework or design structure that you're trying to achieve knowing what your end goal is and then working step by step towards achieving that goal measuring the automation success at various stages based on the business outcomes. + +Build concepts modelled around existing applications there's no need to design the concepts around automation in a bubble because they need to be applied to your application, your service, your infrastructure, so begin to build the concepts and model them around your existing infrastructure, you're existing applications. + +### Approach to Networking Automation + +We should identify the tasks and perform a discovery on network change requests so that you have the most common issues and problems to automate a solution to. + +- Make a list of all the change requests and workflows that are currently being addressed manually. +- Determine the most common, time-consuming and error-prone activities. +- Prioritise the requests by taking a business-driven approach. +- This is the framework for building an automation process, what must be automated and what must not. + +We should then divide tasks and analyse how different network functions work and interact with each other. + +- Infrastructure/Network team receives change tickets at multiple layers to deploy applications. +- Based on Network services, divide them into different areas and understand how they interact with each other. + - Application Optimisation + - ADC (Application Delivery Controller) + - Firewall + - DDI (DNS, DHCP, IPAM etc) + - Routing + - Others +- Identify various dependencies to address business and cultural differences and bring in cross-team collaboration. + +Reusable policies, define and simplify reusable service tasks, processes and input/outputs. + +- Define offerings for various services, processes and input/outputs. +- Simplifying the deployment process will reduce the time to market for both new and existing workloads. +- Once you have a standard process, it can be sequenced and aligned to individual requests for a multi-threaded approach and delivery. + +Combine the policies with business-specific activities. How does implementing this policy help the business? Saves time? Saves Money? Provides better business outcome? + +- Ensure that service tasks are interoperable. +- Associate the incremental service tasks so that they align to create business services. +- Allow for the flexibility to associate and re-associate service tasks on demand. +- Deploy Self-Service capabilities and pave the way for improved operational efficiency. +- Allow for the multiple technology skillsets to continue to contribute with oversight and compliance. + +**Iterate** on the policies and process, adding and improving while maintaining availability and service. + +- Start small by automating existing tasks. +- Get familiar with the automation process, so that you can identify other areas that can benefit from automation. +- iterate your automation initiatives, adding agility incrementally while maintaining the required availability. +- Taking an incremental approach paves the way for success! + +Orchestrate the network service! + +- Automation of the deployment process is required to deliver applications rapidly. +- Creating an agile service environment requires different elements to be managed across technology skillsets. +- Prepare for an end to end orchestration that provides for control over automation and the order of deployments. + +## Network Automation Tools + +The good news here is that for the most part, the tools we use here for Network automation are generally the same that we will use for other areas of automation or what we have already covered so far or what we will cover in future sessions. + +Operating System - As I have throughout this challenge, I am focusing on doing most of my learning with a Linux OS, those reasons were given in the Linux section but almost all of the tooling that we will touch albeit cross-OS platform maybe today they all started as Linux based applications or tools, to begin with. + +Integrated Development Environment (IDE) - Again not much to say here other than throughout I would suggest Visual Studio Code as your IDE, based on the extensive plugins that are available for so many different languages. + +Configuration Management - We have not got to the Configuration management section yet, but it is very clear that Ansible is a favourite in this area for managing and automating configurations. Ansible is written in Python but you do not need to know Python. + +- Agentless +- Only requires SSH +- Large Support Community +- Lots of Network Modules +- Push only model +- Configured with YAML +- Open Source! + +[Link to Ansible Network Modules](https://docs.ansible.com/ansible/2.9/modules/list_of_network_modules.html) + +We will also touch on **Ansible Tower** in the configuration management section, see this as the GUI front end for Ansible. + +CI/CD - Again we will cover more about the concepts and tooling around this but it's important to at least mention here as this spans not only networking but all provisioning of service and platform. + +In particular, Jenkins provides or seems to be a popular tool for Network Automation. + +- Monitors git repository for changes and then initiates them. + +Version Control - Again something we will dive deeper into later on. + +- Git provides version control of your code on your local device - Cross-Platform +- GitHub, GitLab, BitBucket etc are online websites where you define your repositories and upload your code. + +Language | Scripting - Something we have not covered here is Python as a language, I decided to dive into Go instead as the programming language based on my circumstances, I would say that it was a close call between Golang and Python and Python it seems to be the winner for Network Automation. + +- Nornir is something to mention here, an automation framework written in Python. This seems to take the role of Ansible but specifically around Network Automation. [Nornir documentation](https://nornir.readthedocs.io/en/latest/) + +Analyse APIs - Postman is a great tool for analysing RESTful APIs. Helps to build, test and modify APIs. + +- POST >>> To create resources objects. +- GET >>> To retrieve a resources. +- PUT >>> To create or replace the resources. +- PATCH >>> To create or update the resources object. +- Delete >>> To delete a resources + +[Postman tool Download](https://www.postman.com/downloads/) + +### Other tools to mention + +[Cisco NSO (Network Services Orchestrator)](https://www.cisco.com/c/en/us/products/cloud-systems-management/network-services-orchestrator/index.html) + +[NetYCE - Simplify Network Automation](https://netyce.com/) + +[Network Test Automation](https://pubhub.devnetcloud.com/media/genie-feature-browser/docs/#/) + +Over the next 3 days, I am planning to get more hands-on around some of the things we have covered and put some work in around Python and Network automation. + +We have nowhere near covered all of the networking topics so far but wanted to make this broad enough to follow along and still keep learning from the resources I am adding below. + +## Resources + +- [3 Necessary Skills for Network Automation](https://www.youtube.com/watch?v=KhiJ7Fu9kKA&list=WL&index=122&t=89s) +- [Computer Networking full course](https://www.youtube.com/watch?v=IPvYjXCsTg8) +- [Practical Networking](http://www.practicalnetworking.net/) +- [Python Network Automation](https://www.youtube.com/watch?v=xKPzLplPECU&list=WL&index=126) + +See you on [Day 25](day25.md) diff --git a/zh_tw/Days/day25.md b/zh_tw/Days/day25.md new file mode 100644 index 000000000..cf9940668 --- /dev/null +++ b/zh_tw/Days/day25.md @@ -0,0 +1,174 @@ +--- +title: '#90DaysOfDevOps - Python for Network Automation - Day 25' +published: false +description: 90DaysOfDevOps - Python for Network Automation +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049038 +--- +## Python for Network Automation + +Python is the standard language used for automated network operations. + +Whilst it is not only for network automation it seems to be everywhere when you are looking for resources and as previously mentioned if it's not Python then it's generally Ansible which is written also in Python. + +I think I have mentioned this already but during the "Learn a programming language" section I chose Golang over Python for reasons around my company are developing in Go so that was a good reason for me to learn but if that was not the case then Python would have taken that time. + +- Readability and ease of use - It seems that Python seems to just make sense. There doesn't seem to be the requirements around `{}` in the code to start and end blocks. Couple this with a strong IDE like VS Code you have a pretty easy start when wanting to run some python code. + +Pycharm might be another IDE worth mentioning here. + +- Libraries - The extensibility of Python is the real gold mine here, I mentioned before that this is not just for Network Automation but in fact, there are libraries plenty for all sorts of devices and configurations. You can see the vast amount here [PyPi](https://pypi.python.org/pypi) + +When you want to download the library to your workstation, then you use a tool called `pip` to connect to PyPI and download it locally. Network vendors such as Cisco, Juniper, and Arista developed libraries to facilitate access to their devices. + +- Powerful & Efficient - Remember during the Go days I went through the "Hello World" scenario and we went through I think 6 lines of code? In Python it is + +``` +print('hello world') +``` + +Put all of the above points together and it should be easy to see why Python is generally mentioned as the de-facto tool when working on automating. + +I think it's important to note that it's possible that several years back there were scripts that might have interacted with your network devices to maybe automate the backup of configuration or to gather logs and other insights into your devices. The automation we are talking about here is a little different and that's because the overall networking landscape has also changed to suit this way of thinking better and enabled more automation. + +- Software-Defined Network - SDN Controllers take the responsibility of delivering the control plane configuration to all devices on the network, meaning just a single point of contact for any network changes, no longer having to telnet or SSH into every device and also relying on humans to do this which has a repeatable chance of failure or misconfiguration. + +- High-Level Orchestration - Go up a level from those SDN controllers and this allows for orchestration of service levels then there is the integration of this orchestration layer into your platforms of choice, VMware, Kubernetes, Public Clouds etc. + +- Policy-based management - What do you want to have? What is the desired state? You describe this and the system has all the details on how to figure it out to become the desired state. + +## Setting up the lab environment + +Not everyone has access to physical routers, switches and other networking devices. + +I wanted to make it possible for us to look at some of the tooling pre-mentioned but also get hands-on and learn how to automate the configuration of our networks. + +When it comes to options there are a few that we can choose from. + +- [GNS3 VM](https://www.gns3.com/software/download-vm) +- [Eve-ng](https://www.eve-ng.net/) +- [Unimus](https://unimus.net/) Not a lab environment but an interesting concept. + +We will build our lab out using [Eve-ng](https://www.eve-ng.net/) as mentioned before you can use a physical device but to be honest a virtual environment means that we can have a sandbox environment to test many different scenarios. Plus being able to play with different devices and topologies might be of interest. + +We are going to do everything on EVE-NG with the community edition. + +### Getting started + +The community edition comes in ISO and OVF formats for [download](https://www.eve-ng.net/index.php/download/) + +We will be using the OVF download but with the ISO there is the option to build out on a bare metal server without the need of a hypervisor. + +![](Images/Day25_Networking1.png) + +For our walkthrough, we will be using VMware Workstation as I have a license via my vExpert but you can equally use VMware Player or any of the other options mentioned in the [documentation](https://www.eve-ng.net/index.php/documentation/installation/system-requirement/)Unfortunately we cannot use our previously used Virtual box! + +This is also where I had an issue with GNS3 with Virtual Box even though supported. + +[Download VMware Workstation Player - FREE](https://www.vmware.com/uk/products/workstation-player.html) + +[VMware Workstation PRO](https://www.vmware.com/uk/products/workstation-pro.html) Also noted that there is an evaluation period for free! + +### Installation on VMware Workstation PRO + +Now we have our hypervisor software downloaded and installed, and we have the EVE-NG OVF downloaded. If you are using VMware Player please let me know if this process is the same. + +We are now ready to get things configured. + +Open VMware Workstation and then select `file` and `open` + +![](Images/Day25_Networking2.png) + +When you download the EVE-NG OVF Image it is going to be within a compressed file. Extract the contents out into its folder so it looks like. + +![](Images/Day25_Networking3.png) + +Navigate to the location that you downloaded the EVE-NG OVF image to and begin the import. + +Give it a recognisable name and store the virtual machine somewhere on your system. + +![](Images/Day25_Networking4.png) + +When the import is complete increase the number of processors to 4 and the memory allocated to 8 GB. (This should be the case after import with the latest version if not then edit VM settings) + +Also, make sure the Virtualise Intel VT-x/EPT or AMD-V/RVI checkbox is enabled. This option instructs VMware workstation to pass the virtualisation flags to the guest OS (nested virtualisation) This was the issue I was having with GNS3 with Virtual Box even though my CPU allows this. + +![](Images/Day25_Networking5.png) + +### Power on & Access + +Sidenote & Rabbit hole: Remember I mentioned that this would not work with VirtualBox! Well yeah had the same issue with VMware Workstation and EVE-NG but it was not the fault of the virtualisation platform! + +I have WSL2 running on my Windows Machine and this seems to remove the capability of being able to run anything nested inside of your environment. I am confused as to why the Ubuntu VM does run as it seems to take out the Intel VT-d virtualisation aspect of the CPU when using WSL2. + +To resolve this we can run the following command on our Windows machine and reboot the system, note that whilst this is off then you will not be able to use WSL2. + +`bcdedit /set hypervisorlaunchtype off` + +When you want to go back and use WSL2 then you will need to run this command and reboot. + +`bcdedit /set hypervisorlaunchtype auto` + +Both of these commands should be ran as administrator! + +Ok back to the show, You should now have a powered-on machine in VMware Workstation and you should have a prompt looking similar to this. + +![](Images/Day25_Networking6.png) + +On the prompt above you can use: + +username = root +password = eve + +You will then be asked to provide the root password again, this will be used to SSH into the host later on. + +We then can change the hostname. + +![](Images/Day25_Networking7.png) + +Next, we define a DNS Domain Name, I have used the one below but I am not sure if this will need to be changed later on. + +![](Images/Day25_Networking8.png) + +We then configure networking, I am selecting static so that the IP address given will be persistent after reboots. + +![](Images/Day25_Networking9.png) + +The final step, provide a static IP address from a network that is reachable from your workstation. + +![](Images/Day25_Networking10.png) + +There are some additional steps here where you will have to provide a subnet mask for your network, default gateway and DNS. + +Once finished it will reboot, when it is back up you can take your static IP address and put this into your browser. + +![](Images/Day25_Networking11.png) + +The default username for the GUI is `admin` and the password is `eve` while the default username for SSH is `root` and the password is `eve` but this would have been changed if you changed during the setup. + +![](Images/Day25_Networking12.png) + +I chose HTML5 for the console vs native as this will open a new tab in your browser when you are navigating through different consoles. + +Next up we are going to: + +- Install the EVE-NG client pack +- Load some network images into EVE-NG +- Build a Network Topology +- Adding Nodes +- Connecting Nodes +- Start building Python Scripts +- Look at telnetlib, Netmiko, Paramiko and Pexpect + +## Resources + +- [Free Course: Introduction to EVE-NG](https://www.youtube.com/watch?v=g6B0f_E0NMg) +- [EVE-NG - Creating your first lab](https://www.youtube.com/watch?v=9dPWARirtK8) +- [3 Necessary Skills for Network Automation](https://www.youtube.com/watch?v=KhiJ7Fu9kKA&list=WL&index=122&t=89s) +- [Computer Networking full course](https://www.youtube.com/watch?v=IPvYjXCsTg8) +- [Practical Networking](http://www.practicalnetworking.net/) +- [Python Network Automation](https://www.youtube.com/watch?v=xKPzLplPECU&list=WL&index=126) + +See you on [Day 26](day26.md) diff --git a/zh_tw/Days/day26.md b/zh_tw/Days/day26.md new file mode 100644 index 000000000..f4fc21785 --- /dev/null +++ b/zh_tw/Days/day26.md @@ -0,0 +1,120 @@ +--- +title: '#90DaysOfDevOps - Building our Lab - Day 26' +published: false +description: 90DaysOfDevOps - Building our Lab +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048762 +--- +## Building our Lab + +We are going to continue our setup of our emulated network using EVE-NG and then hopefully get some devices deployed and start thinking about how we can automate the configuration of these devices. On [Day 25](day25.md) we covered the installation of EVE-NG onto our machine using VMware Workstation. + +### Installing EVE-NG Client + +There is also a client pack that allows us to choose which application is used when we SSH to the devices. It will also set up Wireshark for packet captures between links. You can grab the client pack for your OS (Windows, macOS, Linux). + +[EVE-NG Client Download](https://www.eve-ng.net/index.php/download/) + +![](Images/Day26_Networking1.png) + +Quick Tip: If you are using Linux as your client then there is this [client pack](https://github.com/SmartFinn/eve-ng-integration). + +The install is a straightforward next,next and I would suggest leaving the defaults. + +### Obtaining network images + +This step has been a challenge, I have followed some videos that I will link at the end that links to some resources and downloads for our router and switch images whilst telling us how and where to upload them. + +It is important to note that I using everything for education purposes. I would suggest downloading official images from network vendors. + +[Blog & Links to YouTube videos](https://loopedback.com/2019/11/15/setting-up-eve-ng-for-ccna-ccnp-ccie-level-studies-includes-multiple-vendor-node-support-an-absolutely-amazing-study-tool-to-check-out-asap/) + +[How To Add Cisco VIRL vIOS image to Eve-ng](https://networkhunt.com/how-to-add-cisco-virl-vios-image-to-eve-ng/) + +Overall the steps here are a little complicated and could be much easier but the above blogs and videos walk through the process of adding the images to your EVE-NG box. + +I used FileZilla to transfer the qcow2 to the VM over SFTP. + +For our lab, we need Cisco vIOS L2 (switches) and Cisco vIOS (router) + +### Create a Lab + +Inside the EVE-NG web interface, we are going to create our new network topology. We will have four switches and one router that will act as our gateway to outside networks. + +| Node | IP Address | +| ----------- | ----------- | +| Router | 10.10.88.110| +| Switch1 | 10.10.88.111| +| Switch2 | 10.10.88.112| +| Switch3 | 10.10.88.113| +| Switch4 | 10.10.88.114| + +#### Adding our Nodes to EVE-NG + +When you first log in to EVE-NG you will see a screen like below, we want to start by creating our first lab. + +![](Images/Day26_Networking2.png) + +Give your lab a name and the other fields are optional. + +![](Images/Day26_Networking3.png) + +You will be then greeted with a blank canvas to start creating your network. Right-click on your canvas and choose add node. + +From here you will have a long list of node options, If you have followed along above you will have the two in blue shown below and the others are going to be grey and unselectable. + +![](Images/Day26_Networking4.png) + +We want to add the following to our lab: + +- 1 x Cisco vIOS Router +- 4 x Cisco vIOS Switch + +Run through the simple wizard to add them to your lab and it should look something like this. + +![](Images/Day26_Networking5.png) + +#### Connecting our nodes + +We now need to add our connectivity between our routers and switches. We can do this quite easily by hovering over the device and seeing the connection icon as per below and then connecting that to the device we wish to connect to. + +![](Images/Day26_Networking6.png) + +When you have finished connecting your environment you may also want to add some way to define physical boundaries or locations using boxes or circles which can also be found in the right-click menu. You can also add text which is useful when we want to define our naming or IP addresses in our labs. + +I went ahead and made my lab look like the below. + +![](Images/Day26_Networking7.png) + +You will also notice that the lab above is all powered off, we can start our lab by selecting everything and right-clicking and selecting start selected. + +![](Images/Day26_Networking8.png) + +Once we have our lab up and running you will be able to console into each device and you will notice at this stage they are pretty dumb with no configuration. We can add some configuration to each node by copying or creating your own in each terminal. + +I will leave my configuration in the Networking folder of the repository for reference. + +| Node | Configuration | +| ----------- | ----------- | +| Router | [R1](Networking/R1) | +| Switch1 | [SW1](Networking/SW1) | +| Switch2 | [SW2](Networking/SW2) | +| Switch3 | [SW3](Networking/SW3) | +| Switch4 | [SW4](Networking/SW4) | + +## Resources + +- [Free Course: Introduction to EVE-NG](https://www.youtube.com/watch?v=g6B0f_E0NMg) +- [EVE-NG - Creating your first lab](https://www.youtube.com/watch?v=9dPWARirtK8) +- [3 Necessary Skills for Network Automation](https://www.youtube.com/watch?v=KhiJ7Fu9kKA&list=WL&index=122&t=89s) +- [Computer Networking full course](https://www.youtube.com/watch?v=IPvYjXCsTg8) +- [Practical Networking](http://www.practicalnetworking.net/) +- [Python Network Automation](https://www.youtube.com/watch?v=xKPzLplPECU&list=WL&index=126) + +Most of the examples I am using here as I am not a Network Engineer have come from this extensive book which is not free but I am using some of the scenarios to help understand Network Automation. + +- [Hands-On Enterprise Automation with Python (Book)](https://www.packtpub.com/product/hands-on-enterprise-automation-with-python/9781788998512) + +See you on [Day 27](day27.md) diff --git a/zh_tw/Days/day27.md b/zh_tw/Days/day27.md new file mode 100644 index 000000000..d2d3bceb3 --- /dev/null +++ b/zh_tw/Days/day27.md @@ -0,0 +1,138 @@ +--- +title: '#90DaysOfDevOps - Getting Hands-On with Python & Network - Day 27' +published: false +description: 90DaysOfDevOps - Getting Hands-On with Python & Network +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048735 +--- +## Getting Hands-On with Python & Network + +In this final section of Networking fundamentals, we are going to cover some automation tasks and tools with our lab environment created on [Day 26](day26.md) + +We will be using an SSH tunnel to connect to our devices from our client vs telnet. The SSH tunnel created between client and device is encrypted. We also covered SSH in the Linux section on [Day 18](day18.md) + +## Access our virtual emulated environment + +For us to interact with our switches we either need a workstation inside the EVE-NG network and you can deploy a Linux box there with Python installed to perform your automation ([Resource for setting up Linux inside EVE-NG](https://www.youtube.com/watch?v=3Qstk3zngrY)) or you can do something like me and define a cloud for access from your workstation. + +![](Images/Day27_Networking3.png) + +To do this, we have right-clicked on our canvas and we have selected network and then selected "Management(Cloud0)" this will bridge out to our home network. + +![](Images/Day27_Networking4.png) + +However, we do not have anything inside this network so we need to add connections from the new network to each of our devices. (My networking knowledge needs more attention and I feel that you could just do this next step to the top router and then have connectivity to the rest of the network through this one cable?) + +I have then logged on to each of our devices and I have run through the following commands for the interfaces applicable for where the cloud comes in. + +``` +enable +config t +int gi0/0 +ip add dhcp +no sh +exit +exit +sh ip int br +``` + +The final step gives us the DHCP address from our home network. My device network list is as follows: + +| Node | IP Address | Home Network IP | +| ----------- | ----------- | ----------- | +| Router | 10.10.88.110| 192.168.169.115 | +| Switch1 | 10.10.88.111| 192.168.169.178 | +| Switch2 | 10.10.88.112| 192.168.169.193 | +| Switch3 | 10.10.88.113| 192.168.169.125 | +| Switch4 | 10.10.88.114| 192.168.169.197 | + +### SSH to a network device + +With the above in place, we can now connect to our devices on our home network using our workstation. I am using Putty but also have access to other terminals such as git bash that give me the ability to SSH to our devices. + +Below you can see we have an SSH connection to our router device. (R1) + +![](Images/Day27_Networking5.png) + +### Using Python to gather information from our devices + +The first example of how we can leverage Python is to gather information from all of our devices and in particular, I want to be able to connect to each one and run a simple command to provide me with interface configuration and settings. I have stored this script here [netmiko_con_multi.py](Networking/netmiko_con_multi.py) + +Now when I run this I can see each port configuration over all of my devices. + +![](Images/Day27_Networking6.png) + +This could be handy if you have a lot of different devices, create this one script so that you can centrally control and understand quickly all of the configurations in one place. + +### Using Python to configure our devices + +The above is useful but what about using Python to configure our devices, in our scenario we have a trunked port between `SW1` and `SW2` again imagine if this was to be done across many of the same switches we want to automate that and not have to manually connect to each switch to make the configuration change. + +We can use [netmiko_sendchange.py](Networking/netmiko_sendchange.py) to achieve this. This will connect over SSH and perform that change on our `SW1` which will also change to `SW2`. + +![](Images/Day27_Networking7.png) + +Now for those that look at the code, you will see the message appears and tells us `sending configuration to device` but there is no confirmation that this has happened to we could add additional code to our script to perform that check and validation on our switch or we could modify our script before to show us this. [netmiko_con_multi_vlan.py](Networking/netmiko_con_multi_vlan.py) + +![](Images/Day27_Networking8.png) + +### backing up your device configurations + +Another use case would be to capture our network configurations and make sure we have those backed up, but again we don't want to be connecting to every device we have on our network so we can also automate this using [backup.py](Networking/backup.py). You will also need to populate the [backup.txt](Networking/backup.txt) with the IP addresses you want to backup. + +Run your script and you should see something like the below. + +![](Images/Day27_Networking9.png) + +That could be me just writing a simple print script in python so I should show you the backup files as well. + +![](Images/Day27_Networking10.png) + +### Paramiko + +A widely used Python module for SSH. You can find out more at the official GitHub link [here](https://github.com/paramiko/paramiko) + +We can install this module using the `pip install paramiko` command. + +![](Images/Day27_Networking1.png) + +We can verify the installation by entering the Python shell and importing the paramiko module. + +![](Images/Day27_Networking2.png) + +### Netmiko + +The netmiko module targets network devices specifically whereas paramiko is a broader tool for handling SSH connections overall. + +Netmiko which we have used above alongside paramiko can be installed using `pip install netmiko` + +Netmiko supports many network vendors and devices, you can find a list of supported devices on the [GitHub Page](https://github.com/ktbyers/netmiko#supports) + +### Other modules + +It is also worth mentioning a few other modules that we have not had the chance to look at but they give a lot more functionality when it comes to network automation. + +`netaddr` is used for working with and manipulating IP addresses, again the installation is simple with `pip install netaddr` + +you might find yourself wanting to store a lot of your switch configuration in an excel spreadsheet, the `xlrd` will allow your scripts to read the excel workbook and convert rows and columns into a matrix. `pip install xlrd` to get the module installed. + +Some more use cases where network automation can be used that I have not had the chance to look into can be found [here](https://github.com/ktbyers/pynet/tree/master/presentations/dfwcug/examples) + +I think this wraps up our Networking section of the #90DaysOfDevOps, Networking is one area that I have not touched for a while really and there is so much more to cover but I am hoping between my notes and the resources shared throughout it is helpful for some. + +## Resources + +- [Free Course: Introduction to EVE-NG](https://www.youtube.com/watch?v=g6B0f_E0NMg) +- [EVE-NG - Creating your first lab](https://www.youtube.com/watch?v=9dPWARirtK8) +- [3 Necessary Skills for Network Automation](https://www.youtube.com/watch?v=KhiJ7Fu9kKA&list=WL&index=122&t=89s) +- [Computer Networking full course](https://www.youtube.com/watch?v=IPvYjXCsTg8) +- [Practical Networking](http://www.practicalnetworking.net/) +- [Python Network Automation](https://www.youtube.com/watch?v=xKPzLplPECU&list=WL&index=126) + +Most of the examples I am using here as I am not a Network Engineer have come from this extensive book which is not free but I am using some of the scenarios to help understand Network Automation. + +- [Hands-On Enterprise Automation with Python (Book)](https://www.packtpub.com/product/hands-on-enterprise-automation-with-python/9781788998512) + +See you on [Day 28](day28.md) where will start looking into cloud computing and get a good grasp and foundational knowledge of the topic and what is available. diff --git a/zh_tw/Days/day28.md b/zh_tw/Days/day28.md new file mode 100644 index 000000000..49dfc3efd --- /dev/null +++ b/zh_tw/Days/day28.md @@ -0,0 +1,104 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: DevOps & The Cloud - Day 28' +published: false +description: 90DaysOfDevOps - The Big Picture DevOps & The Cloud +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048737 +--- +## The Big Picture: DevOps & The Cloud + +When it comes to cloud computing and what is offered, it goes very nicely with the DevOps ethos and processes. We can think of Cloud Computing bringing the technology and services whilst DevOps as we have mentioned many times before is about the process and process improvement. + +But to start with that cloud learning journey is a steep one and making sure you know and understand all elements or the best service to choose for the right price point is confusing. + +![](Images/Day28_Cloud1.png) + +Does the public cloud require a DevOps mindset? My answer here is not, but to really take advantage of cloud computing and possibly avoid those large cloud bills that so many people have been hit with then it is important to think of Cloud Computing and DevOps together. + +If we look at what we mean by the Public Cloud at a 40,000ft view, it is about removing some responsibility to a managed service to enable you and your team to focus on more important aspects which name should be the application and the end-users. After all the Public Cloud is just someone else's computer. + +![](Images/Day28_Cloud2.png) + +In this first section, I want to get into and describe a little more of what Public Cloud is and some of the building blocks that get referred to as the Public Cloud overall. + +### SaaS + +The first area to cover is Software as a service, this service is removing almost all of the management overhead of a service that you may have once run on-premises. Let's think about Microsoft Exchange for our email, this used to be a physical box that lived in your data centre or maybe in the cupboard under the stairs. You would need to feed and water that server. By that I mean you would need to keep it updated and you would be responsible for buying the server hardware, most likely installing the operating system, installing the applications required and then keeping that patched, if anything went wrong you would have to troubleshoot and get things back up and running. + +Oh, and you would also have to make sure you were backing up your data, although this doesn't change with SaaS for the most part either. + +What SaaS does and in particular Microsoft 365, because I mentioned Exchange is removing that administration overhead and they provide a service that delivers your exchange functionality by way of mail but also much other productivity (Office 365) and storage options (OneDrive) that overall gives a great experience to the end-user. + +Other SaaS applications are widely adopted, such as Salesforce, SAP, Oracle, Google, Apple. All removing that burden of having to manage more of the stack. + +I am sure there is a story with DevOps and SaaS-based applications but I am struggling to find out what they may be. I know Azure DevOps has some great integrations with Microsoft 365 that I might have a look into and report back. + +![](Images/Day28_Cloud3.png) + +### Public Cloud + +Next up we have the public cloud, most people would think of this in a few different ways, some would see this as the hyper scalers only such as Microsoft Azure, Google Cloud Platform and AWS. + +![](Images/Day28_Cloud4.png) + +Some will also see the public cloud as a much wider offering that includes those hyper scalers but also the thousands of MSPs all over the world as well. For this post, we are going to consider Public Cloud including hyper scalers and MSPs, although later on, we will specifically dive into one or more of the hyper scalers to get that foundational knowledge. + +![](Images/Day28_Cloud5.png) +*thousands more companies could land on this, I am merely picking from local, regional, telco and global brands I have worked with and am aware of.* + +We mentioned in the SaaS section that Cloud removed the responsibility or the burden of having to administer parts of a system. If SaaS we see a lot of the abstraction layers removed i.e the physical systems, network, storage, operating system, even application to some degree. When it comes to the cloud there are various levels of abstraction we can remove or keep depending on your requirements. + +We have already mentioned SaaS but there are at least two more to mention regarding the public cloud. + +Infrastructure as a service - You can think of this layer as a virtual machine but whereas on-premises you will be having to look after the physical layer in the cloud this is not the case, the physical is the cloud providers responsibility and you will manage and administer the Operating System, the data and the applications you wish to run. + +Platform as a service - This continues to remove the responsibility of layers and this is really about you taking control of the data and the application but not having to worry about the underpinning hardware or operating system. + +There are many other aaS offerings out there but these are the two fundamentals. You might see offerings around StaaS (Storage as a service) which provides you with your storage layer but without having to worry about the hardware underneath. Or you might have heard CaaS for Containers as a service which we will get onto, later on, another aaS we will look to cover over the next 7 days is FaaS (Functions as a Service) where maybe you do not need a running system up all the time and you just want a function to be executed as and when. + +There are many ways in which the public cloud can provide abstraction layers of control that you wish to pass up and pay for. + +![](Images/Day28_Cloud6.png) + +### Private Cloud + +Having your own data centre is not a thing of the past I would think that this has become a resurgence among a lot of companies that have found the OPEX model difficult to manage as well as skill sets in just using the public cloud. + +The important thing to note here is the public cloud is likely now going to be your responsibility and it is going to be on your premises. + +We have some interesting things happening in this space not only with VMware that dominated the virtualisation era and on-premises infrastructure environments. We also have the hyper scalers offering an on-premises version of their public clouds. + +![](Images/Day28_Cloud7.png) + +### Hybrid Cloud + +To follow on from the Public and Private cloud mentions we also can span across both of these environments to provide flexibility between the two, maybe take advantage of services available in the public cloud but then also take advantage of features and functionality of being on-premises or it might be a regulation that dictates you having to store data locally. + +![](Images/Day28_Cloud8.png) + +Putting this all together we have a lot of choices for where we store and run our workloads. + +![](Images/Day28_Cloud9.png) + +Before we get into a specific hyper-scale, I have asked the power of Twitter where we should go? + +![](Images/Day28_Cloud10.png) + +[Link to Twitter Poll](https://twitter.com/MichaelCade1/status/1486814904510259208?s=20&t=x2n6QhyOXSUs7Pq0itdIIQ) + +Whichever one gets the highest percentage we will take a deeper dive into the offerings, I think the important to mention though is that services from all of these are quite similar which is why I say to start with one because I have found that in knowing the foundation of one and how to create virtual machines, set up networking etc. I have been able to go to the others and quickly ramp up in those areas. + +Either way, I am going to share some great **FREE** resources that cover all three of the hyper scalers. + +I am also going to build out a scenario as I have done in the other sections where we can build something as we move through the days. + +## Resources + +- [Hybrid Cloud and MultiCloud](https://www.youtube.com/watch?v=qkj5W98Xdvw) +- [Microsoft Azure Fundamentals](https://www.youtube.com/watch?v=NKEFWyqJ5XA&list=WL&index=130&t=12s) +- [Google Cloud Digital Leader Certification Course](https://www.youtube.com/watch?v=UGRDM86MBIQ&list=WL&index=131&t=10s) +- [AWS Basics for Beginners - Full Course](https://www.youtube.com/watch?v=ulprqHHWlng&t=5352s) + +See you on [Day 29](day29.md) diff --git a/zh_tw/Days/day29.md b/zh_tw/Days/day29.md new file mode 100644 index 000000000..2200595ef --- /dev/null +++ b/zh_tw/Days/day29.md @@ -0,0 +1,138 @@ +--- +title: '#90DaysOfDevOps - Microsoft Azure Fundamentals - Day 29' +published: false +description: 90DaysOfDevOps - Microsoft Azure Fundamentals +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048705 +--- +## Microsoft Azure Fundamentals + +Before we get going, the winner of the Twitter poll was Microsoft Azure, hence the title of the page. It was close and also quite interesting to see the results come in over the 24 hours. + +![](Images/Day29_Cloud1.png) + +I would say in terms of covering this topic is going to give me a better understanding and update around the services available on Microsoft Azure, I lean towards Amazon AWS when it comes to my day today. I have however left resources I had lined up for all three of the major cloud providers. + +I do appreciate that there are more and the poll only included these 3 and in particular, there were some comments about Oracle Cloud. I would love to hear more about other cloud providers being used out in the wild. + +### The Basics + +- Provides public cloud services +- Geographically distributed (60+ Regions worldwide) +- Accessed via the internet and/or private connections +- Multi-tenant model +- Consumption-based billing - (Pay as you go | Pay as you grow) +- A large number of service types and offerings for different requirements. + +- [Microsoft Azure Global Infrastructure](https://infrastructuremap.microsoft.com/explore) + +As much as we spoke about SaaS and Hybrid Cloud we are not planning on covering those topics here. + +The best way to get started and follow along is by clicking the link, which will enable you to spin up a [Microsoft Azure Free Account](https://azure.microsoft.com/en-gb/free/) + +### Regions + +I linked the interactive map above, but we can see the image below the breadth of regions being offered in the Microsoft Azure platform worldwide. + +![](Images/Day29_Cloud2.png) +*image taken from [Microsoft Docs - 01/05/2021](https://docs.microsoft.com/en-us/azure/networking/microsoft-global-network)* + +You will also see several "sovereign" clouds meaning they are not linked or able to speak to the other regions, for example, these would be associated with governments such as the `AzureUSGovernment` also `AzureChinaCloud` and others. + +When we are deploying our services within Microsoft Azure we will choose a region for almost everything. However, it is important to note that not every service is available in every region. You can see [Products available by region](https://azure.microsoft.com/en-us/global-infrastructure/services/?products=all) at the time of my writing this that in West Central US we cannot use Azure Databricks. + +I also mentioned "almost everything" above, there are certain services that are linked to the region such as Azure Bot Services, Bing Speech, Azure Virtual Desktop, Static Web Apps, and some more. + +Behind the scenes, a region may be made up of more than one data centre. These will be referred to as Availability Zones. + +In the below image you will see and again this is taken from the Microsoft official documentation it describes what a region is and how it is made up of Availability Zones. However not all regions have multiple Availability Zones. + +![](Images/Day29_Cloud3.png) + +The Microsoft Documentation is very good, and you can read up more on [Regions and Availability Zones](https://docs.microsoft.com/en-us/azure/availability-zones/az-overview) here. + +### Subscriptions + +Remember we mentioned that Microsoft Azure is a consumption model cloud you will find that all major cloud providers follow this model. + +If you are an Enterprise then you might want or have an Enterprise Agreement set up with Microsoft to enable your company to consume these Azure Services. + +If you are like me and you are using Microsoft Azure for education then we have a few other options. + +We have the [Microsoft Azure Free Account](https://azure.microsoft.com/en-gb/free/) which generally gives you several free cloud credits to spend in Azure over some time. + +There is also the ability to use a Visual Studio subscription which gives you maybe some free credits each month alongside your annual subscription to Visual Studio, this was commonly known as the MSDN years ago. [Visual Studio](https://azure.microsoft.com/en-us/pricing/member-offers/credit-for-visual-studio-subscribers/) + +Then finally there is the hand over a credit card and have a pay as you go, model. [Pay-as-you-go](https://azure.microsoft.com/en-us/pricing/purchase-options/pay-as-you-go/) + +A subscription can be seen as a boundary between different subscriptions potentially cost centres but completely different environments. A subscription is where the resources are created. + +### Management Groups + +Management groups give us the ability to segregate control across our Azure AD or our tenant environment. Management groups allow us to control policies, RBAC, and budgets. + +Subscriptions belong to these management groups so you could have many subscriptions in your Azure AD Tenant, these subscriptions then can also control policies, RBAC, and budgets. + +### Resource Manager and Resource Groups + +**Azure Resource Manager** +- JSON based API that is built on resource providers. +- Resources belong to a resource group and share a common life cycle. +- Parallelism +- JSON-Based deployments are declarative, idempotent and understand dependencies between resources to govern creation and order. + +**Resource Groups** +- Every Azure Resource Manager resource exists in one and only one resource group! +- Resource groups are created in a region that can contain resources from outside the region. +- Resources can be moved between resource groups +- Resource groups are not walled off from other resource groups, there can be communication between resource groups. +- Resource Groups can also control policies, RBAC, and budgets. + +### Hands-On + +Let's go and get connected and make sure we have a **Subscription** available to us. We can check our simple out of the box **Management Group**, We can then go and create a new dedicated **Resource Group** in our preferred **Region**. + +When we first login to our [Azure portal](https://portal.azure.com/#home) you will see at the top the ability to search for resources, services and docs. + +![](Images/Day29_Cloud4.png) + +We are going to first look at our subscription, you will see here that I am using a Visual Studio Professional subscription which gives me some free credit each month. + +![](Images/Day29_Cloud5.png) + +If we go into that you will get a wider view and a look into what is happening or what can be done with the subscription, we can see billing information with control functions on the left where you can define IAM Access Control and further down there are more resources available. + +![](Images/Day29_Cloud6.png) + +There might be a scenario where you have multiple subscriptions and you want to manage them all under one, this is where management groups can be used to segregate responsibility groups. In mine below, you can see there is just my tenant root group with my subscription. + +You will also see in the previous image that the parent management group is the same id used on the tenant root group. + +![](Images/Day29_Cloud7.png) + +Next up we have Resource groups, this is where we combine our resources and we can easily manage them in one place. I have a few created for various other projects. + +![](Images/Day29_Cloud8.png) + +With what we are going to be doing over the next few days, we want to create our resource group. This is easily done in this console by hitting the create option on the previous image. + +![](Images/Day29_Cloud9.png) + +A validation step takes place and then you have the chance to review your creation and then create. You will also see down the bottom "Download a template for automation" this allows us to grab the JSON format so that we can perform this simple in an automated fashion later on if we wanted, we will cover this later on as well. + +![](Images/Day29_Cloud10.png) + +Hit create, then in our list of resource groups, we now have our "90DaysOfDevOps" group ready for what we do in the next session. + +![](Images/Day29_Cloud11.png) + +## Resources + +- [Hybrid Cloud and MultiCloud](https://www.youtube.com/watch?v=qkj5W98Xdvw) +- [Microsoft Azure Fundamentals](https://www.youtube.com/watch?v=NKEFWyqJ5XA&list=WL&index=130&t=12s) +- [Google Cloud Digital Leader Certification Course](https://www.youtube.com/watch?v=UGRDM86MBIQ&list=WL&index=131&t=10s) +- [AWS Basics for Beginners - Full Course](https://www.youtube.com/watch?v=ulprqHHWlng&t=5352s) + +See you on [Day 30](day30.md) diff --git a/zh_tw/Days/day30.md b/zh_tw/Days/day30.md new file mode 100644 index 000000000..d524ef780 --- /dev/null +++ b/zh_tw/Days/day30.md @@ -0,0 +1,176 @@ +--- +title: '#90DaysOfDevOps - Microsoft Azure Security Models - Day 30' +published: false +description: 90DaysOfDevOps - Microsoft Azure Security Models +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049039 +--- +## Microsoft Azure Security Models + +Following on from the Microsoft Azure Overview, we are going to start with Azure Security and see where this can help in our day today. For the most part, I have found the built-in roles have been sufficient but knowing that we can create and work with many different areas of authentication and configurations. I have found Microsoft Azure to be quite advanced with its Active Directory background compared to other public clouds. + +## Microsoft Azure Security Models + +This is one area that Microsoft Azure seemingly works differently from other public cloud providers, in Azure there is ALWAYS Azure AD. + +### Directory Services + +- Azure Active Directory hosts the security principles used by Microsoft Azure and other Microsoft cloud services. +- Authentication is accomplished through protocols such as SAML, WS-Federation, OpenID Connect and OAuth2. +- Queries are accomplished through REST API called Microsoft Graph API. +- Tenants have a tenant.onmicrosoft.com default name but can also have custom domain names. +- Subscriptions are associated with an Azure Active Directory tenant. + +If we think about AWS to compare the equivalent offering would be AWS IAM (Identity & Access Management) Although still very different + +Azure AD Connect provides the ability to replicate accounts from AD to Azure AD. This can also include groups and sometimes objects. This can be granular and filtered. Supports multiple forests and domains. + +It is possible to create cloud accounts in Microsoft Azure Active Directory (AD) but most organisations already have accounted for their users in their own Active Directory being on-premises. + +Azure AD Connect also allows you to not only see Windows AD servers but also other Azure AD, Google and others. This also provides the ability to collaborate with external people and organisations this is called Azure B2B. + +Authentication options between Active Directory Domain Services and Microsoft Azure Active Directory are possible with both identity sync with a password hash. + +![](Images/Day30_Cloud1.png) + +The passing of the password hash is optional, if this is not used then pass-through authentication is required. + +There is a video linked below that goes into detail about Passthrough authentication. + +[User sign-in with Azure Active Directory Pass-through Authentication](https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-pta) + +![](Images/Day30_Cloud2.png) + +### Federation + +It's fair to say that if you are using Microsoft 365, Microsoft Dynamics and on-premises Active Directory it is quite easy to understand and integrate into Azure AD for federation. However, you might be using other services outside of the Microsoft ecosystem. + +Azure AD can act as a federation broker to these other Non-Microsoft apps and other directory services. + +This will be seen in the Azure Portal as Enterprise Applications of which there are a large number of options. + +![](Images/Day30_Cloud3.png) + +If you scroll down on the enterprise application page you are going to see a long list of featured applications. + +![](Images/Day30_Cloud4.png) + +This option also allows for "bring your own" integration, an application you are developing or a non-gallery application. + +I have not looked into this before but I can see that this is quite the feature set when compared to the other cloud providers and capabilities. + +### Role-Based Access Control + +We have already covered on [Day 29](day29.md) the scopes we are going to cover here, we can set our role-based access control according to one of these areas. + +- Subscriptions +- Management Group +- Resource Group +- Resources + +Roles can be split into three, there are many built-in roles in Microsoft Azure. Those three are: + +- Owner +- Contributor +- Reader + +Owner and Contributor are very similar in their boundaries of scope however the owner can change permissions. + +Other roles are specific to certain types of Azure Resources as well as custom roles. + +We should focus on assigning permissions to groups vs users. + +Permissions are inherited. + +If we go back and look at the "90DaysOfDevOps" Resource group we created and check the Access Control (IAM) within you can see we have a list of contributors and a customer User Access Administrator, and we do have a list of owners (But I cannot show this) + +![](Images/Day30_Cloud5.png) + +We can also check the roles we have assigned here if they are BuiltInRoles and which category they fall under. + +![](Images/Day30_Cloud6.png) + +We can also use the check access tab if we want to check an account against this resource group and make sure that the account we wish to have that access to has the correct permissions or maybe we want to check if a user has too much access. + +![](Images/Day30_Cloud7.png) + +### Microsoft Defender for Cloud + +- Microsoft Defender for Cloud (formerly known as Azure Security Center) provides insight into the security of the entire Azure environment. + +- A single dashboard for visibility into the overall security health of all Azure and non-Azure resources (via Azure Arc) and security hardening guidance. + +- Free tier includes continuous assessment and security recommendations. + +- Paid plans for protected resources types (e.g. Servers, AppService, SQL, Storage, Containers, KeyVault). + +I have switched to another subscription to view the Azure Security Center and you can see here based on very few resources that I have some recommendations in one place. + +![](Images/Day30_Cloud8.png) + +### Azure Policy + +- Azure Policy is an Azure native service that helps to enforce organizational standards and assess compliance at-scale. + +- Integrated into Microsoft Defender for Cloud. Azure Policy audits non-compliant resources and applies remediation. + +- Commonly used for governing resource consistency, regulatory compliance, security, cost, and management standards. + +- Uses JSON format to store evaluation logic and determine whether a resource is compliant or not, and any actions to take for non-compliance (e.g. Audit, AuditIfNotExists, Deny, Modify, DeployIfNotExists). + +- Free for use. The exception being Azure Arc connected resources charged per server/month for Azure Policy Guest Configuration usage. + +### Hands-On + +I have gone out and I have purchased www.90DaysOfDevOps.com and I would like to add this domain to my Azure Active Directory portal, [Add your custom domain name using the Azure Active Directory Portal](https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/add-custom-domain) + +![](Images/Day30_Cloud9.png) + +With that now we can create a new user on our new Active Directory Domain. + +![](Images/Day30_Cloud10.png) + +Now we want to create a group for all of our new 90DaysOfDevOps users in one group. We can create a group as per the below, notice that I am using "Dynamic User" this means Azure AD will query user accounts and add them dynamically vs assigned which is where you manually add the user to your group. + +![](Images/Day30_Cloud11.png) + +There are lots of options when it comes to creating your query, my plan is to simply find the principal name and make sure that the name contains @90DaysOfDevOps.com. + +![](Images/Day30_Cloud12.png) + +Now because we have created our user account already for michael.cade@90DaysOfDevOps.com we can validate the rules are working. For comparison I have also added another account I have associated to another domain here and you can see that because of this rule our user will not land in this group. + +![](Images/Day30_Cloud13.png) + +I have since added a new user1@90DaysOfDevOps.com and if we go and check the group we can see our members. + +![](Images/Day30_Cloud14.png) + +If we have this requirement x100 then we are not going to want to do this all in the console we are going to want to take advantage of either bulk options to create, invite, delete users or you are going to want to look into PowerShell to achieve this automated approach to scale. + +Now we can go to our Resource Group and specify that on the 90DaysOfDevOps resource group we want the owner to be the group we just created. + +![](Images/Day30_Cloud15.png) + +We can equally go in here and deny assignments access to our resource group as well. + +Now if we login to the Azure Portal with our new user account, you can see that we only have access to our 90DaysOfDevOps resource group and not the others seen in previous pictures because we do not have the access. + +![](Images/Day30_Cloud16.png) + +The above is great if this is a user that has access to resources inside of your Azure portal but not every user needs to be aware of the portal, but in order to check access we can use the [Apps Portal](https://myapps.microsoft.com/) This is a single sign on portal for us to test. + +![](Images/Day30_Cloud17.png) + +You are able to customise this portal with your own branding and this might be something we come back to later on. + +## Resources + +- [Hybrid Cloud and MultiCloud](https://www.youtube.com/watch?v=qkj5W98Xdvw) +- [Microsoft Azure Fundamentals](https://www.youtube.com/watch?v=NKEFWyqJ5XA&list=WL&index=130&t=12s) +- [Google Cloud Digital Leader Certification Course](https://www.youtube.com/watch?v=UGRDM86MBIQ&list=WL&index=131&t=10s) +- [AWS Basics for Beginners - Full Course](https://www.youtube.com/watch?v=ulprqHHWlng&t=5352s) + +See you on [Day 31](day31.md) diff --git a/zh_tw/Days/day31.md b/zh_tw/Days/day31.md new file mode 100644 index 000000000..5532e0a18 --- /dev/null +++ b/zh_tw/Days/day31.md @@ -0,0 +1,114 @@ +--- +title: '#90DaysOfDevOps - Microsoft Azure Compute Models - Day 31' +published: false +description: 90DaysOfDevOps - Microsoft Azure Compute Models +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049040 +--- +## Microsoft Azure Compute Models + +Following on from covering the basics around security models within Microsoft Azure yesterday today we are going to look into the various compute services available to us in Azure. + +### Service Availability Options + +This section is close to my heart given my role within Data Management. As with on-premises, it is critical to ensure the availability of your services. + +- High Availability (Protection within a region) +- Disaster Recovery (Protection between regions) +- Backup (Recovery from a point in time) + +Microsoft deploys multiple regions within a geopolitical boundary. + +Two concepts with Azure for Service Availability. Both sets and zones. + +Availability Sets - Provide resiliency within a datacenter + +Availability Zones - Provide resiliency between data centres within a region. + +### Virtual Machines + +Most likely the starting point for anyone in the public cloud. + +- Provides a VM from a variety of series and sizes with different capabilities (Sometimes an overwhelming) [Sizes for Virtual machines in Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes) +- There are many different options and focuses for VMs from high performance, low latency to high memory option VMs. +- We also have a burstable VM type which can be found under the B-Series. This is great for workloads where you can have a low CPU requirement for the most part but require that maybe once a month performance spike requirement. +- Virtual Machines are placed on a virtual network that can provide connectivity to any network. +- Windows and Linux guest OS support. +- There are also Azure-tuned kernels when it comes to specific Linux distributions. [Azure Tuned Kernals](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/endorsed-distros#azure-tuned-kernels) + +### Templating + +I have mentioned before that everything behind or underneath Microsoft Azure is JSON. + +There are several different management portals and consoles we can use to create our resources the preferred route is going to be via JSON templates. + +Idempotent deployments in incremental or complete mode - i.e repeatable desired state. + +There is a large selection of templates that can export deployed resource definitions. I like to think about this templating feature to something like AWS CloudFormation or could be Terraform for a multi-cloud option. We will cover Terraform more in the Infrastructure as code section. + +### Scaling + +Automatic scaling is a large feature of the Public Cloud, being able to spin down resources you are not using or spinning up when you need them. + +In Azure, we have something called Virtual Machine Scale Sets (VMSS) for IaaS. This enables the automatic creation and scale from a gold standard image based on schedules and metrics. + +This is ideal for updating windows so that you can update your images and roll those out with the least impact. + +Other services such as Azure App Services have auto-scaling built-in. + +### Containers + +We have not covered containers as a use case and what and how they can and should be needed in our DevOps learning journey but we need to mention that Azure have some specific container focused services to mention. + +Azure Kubernetes Service (AKS) - Provides a managed Kubernetes solution, no need to worry about the control plane or management of the underpinning cluster management. More on Kubernetes also later on. + +Azure Container Instances - Containers as a service with Per-Second Billing. Run an image and integrate with your virtual network, no need for Container Orchestration. + +Service Fabric - Has many capabilities but includes orchestration for container instances. + +Azure also has the Container Registry which provides a private registry for Docker Images, Helm charts, OCI Artifacts and images. More on this again when we reach the containers section. + +We should also mention that a lot of the container services may indeed also leverage containers under the hood but this is abstracted away from your requirement to manage. + +These mentioned container focused services we also find similar services in all other public clouds. + +### Application Services + +- Azure Application Services provides an application hosting solution that provides an easy method to establish services. +- Automatic Deployment and Scaling. +- Supports Windows & Linux based solutions. +- Services run in an App Service Plan which has a type and size. +- Number of different services including web apps, API apps and mobile apps. +- Support for Deployment slots for reliable testing and promotion. + +### Serverless Computing + +Serverless for me is an exciting next step that I am extremely interested in learning more about. + +The goal with serverless is that we only pay for the runtime of the function and do not have to have running virtual machines or PaaS applications running all the time. We simply run our function when we need it and then it goes away. + +Azure Functions - Provides serverless code. If we remember back to our first look into the public cloud you will remember the abstraction layer of management, with serverless functions you are only going to be managing the code. + +Event-Driven with massive scale, I have a plan to build something when I get some hands-on here hopefully later on. + +Provides input and output binding to many Azure and 3rd Party Services. + +Supports many different programming languages. (C#, NodeJS, Python, PHP, batch, bash, Golang and Rust. Or any Executable) + +Azure Event Grid enables logic to be triggered from services and events. + +Azure Logic App provides a graphical-based workflow and integration. + +We can also look at Azure Batch which can run large-scale jobs on both Windows and Linux nodes with consistent management & scheduling. + +## Resources + +- [Hybrid Cloud and MultiCloud](https://www.youtube.com/watch?v=qkj5W98Xdvw) +- [Microsoft Azure Fundamentals](https://www.youtube.com/watch?v=NKEFWyqJ5XA&list=WL&index=130&t=12s) +- [Google Cloud Digital Leader Certification Course](https://www.youtube.com/watch?v=UGRDM86MBIQ&list=WL&index=131&t=10s) +- [AWS Basics for Beginners - Full Course](https://www.youtube.com/watch?v=ulprqHHWlng&t=5352s) + +See you on [Day 32](day32.md) + diff --git a/zh_tw/Days/day32.md b/zh_tw/Days/day32.md new file mode 100644 index 000000000..17de90295 --- /dev/null +++ b/zh_tw/Days/day32.md @@ -0,0 +1,188 @@ +--- +title: '#90DaysOfDevOps - Microsoft Azure Storage Models - Day 32' +published: false +description: 90DaysOfDevOps - Microsoft Azure Storage Models +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048775 +--- +## Microsoft Azure Storage Models + +### Storage Services + +- Azure storage services are provided by storage accounts. +- Storage accounts are primarily accessed via REST API. +- A storage account must have a unique name that is part of a DNS name `.core.windows.net` +- Various replication and encryption options. +- Sits within a resource group + +We can create our storage group by simply searching for Storage Group in the search bar at the top of the Azure Portal. + +![](Images/Day32_Cloud1.png) + +We can then run through the steps to create our storage account remembering that this name needs to be unique and it also needs to be all lower case, no spaces but can include numbers. + +![](Images/Day32_Cloud2.png) + +We can also choose the level of redundancy we would like against our storage account and anything we store within here. The further down the list the more expensive option but also the spread of your data. + +Even the default redundancy option gives us 3 copies of our data. + +[Azure Storage Redundancy](https://docs.microsoft.com/en-us/azure/storage/common/storage-redundancy) + +Summary of the above link down below: + +- **Locally-redundant storage** - replicates your data three times within a single data centre in the primary region. + +- **Geo-redundant storage** - copies your data synchronously three times within a single physical location in the primary region using LRS. + +- **Zone-redundant storage** - replicates your Azure Storage data synchronously across three Azure availability zones in the primary region. + +- **Geo-zone-redundant storage** - combines the high availability provided by redundancy across availability zones with protection from regional outages provided by geo-replication. Data in a GZRS storage account is copied across three Azure availability zones in the primary region and is also replicated to a second geographic region for protection from regional disasters. + +![](Images/Day32_Cloud3.png) + +Just moving back up to performance options. We have Standard and Premium to choose from. We have chosen Standard in our walkthrough but premium gives you some specific options. + +![](Images/Day32_Cloud4.png) + +Then in the drop-down, you can see we have these three options to choose from. + +![](Images/Day32_Cloud5.png) + +There are lots more advanced options available for your storage account but for now, we do not need to get into these areas. These options are around encryption and data protection. + +### Managed Disks + +Storage access can be achieved in a few different ways. + +Authenticated access via: +- A shared key for full control. +- Shared Access Signature for delegated, granular access. +- Azure Active Directory (Where Available) + +Public Access: +- Public access can also be granted to enable anonymous access including via HTTP. +- An example of this could be to host basic content and files in a block blob so a browser can view and download this data. + +If you are accessing your storage from another Azure service, traffic stays within Azure. + +When it comes to storage performance we have two different types: +- **Standard** - Maximum number of IOPS +- **Premium** - Guaranteed number of IOPS + +There is also a difference between unmanaged and managed disks to consider when choosing the right storage for the task you have. + +### Virtual Machine Storage + +- Virtual Machine OS disks are typically stored on persistent storage. +- Some stateless workloads do not require persistent storage and reduced latency is a larger benefit. +- There are VMs that support ephemeral OS managed disks that are created on the node-local storage. + - These can also be used with VM Scale Sets. + +Managed Disks are durable block storage that can be used with Azure Virtual Machines. You can have Ultra Disk Storage, Premium SSD, Standard SSD, Standard HDD. They also carry some characteristics. + +- Snapshot and Image support +- Simple movement between SKUs +- Better availability when combined with availability sets +- Billed based on disk size not on consumed storage. + +## Archive Storage + +- **Cool Tier** - A cool tier of storage is available to block and append BLOBs. + - Lower Storage cost + - Higher transaction cost. +- **Archive Tier** - Archive storage is available for block BLOBs. + - This is configured on a per-BLOB basis. + - Cheaper cost, Longer Data retrieval latency. + - Same Data Durability as regular Azure Storage. + - Custom Data tiering can be enabled as required. + +### File Sharing + +From the above creation of our storage account, we can now create file shares. + +![](Images/Day32_Cloud6.png) + +This will provide SMB2.1 and 3.0 file shares in Azure. + +Useable within the Azure and externally via SMB3 and port 445 open to the internet. + +Provides shared file storage in Azure. + +Can be mapped using standard SMB clients in addition to REST API. + +You might also notice [Azure NetApp Files](https://vzilla.co.uk/vzilla-blog/azure-netapp-files-how) (SMB and NFS) + +### Caching & Media Services + +The Azure Content Delivery Network provides a cache of static web content with locations throughout the world. + +Azure Media Services, provides media transcoding technologies in addition to playback services. + +## Microsoft Azure Database Models + +Back on [Day 28](day28.md), we covered various service options. One of these was PaaS (Platform as a Service) where you abstract a large amount of the infrastructure and operating system away and you are left with the control of the application or in this case the database models. + +### Relational Databases + +Azure SQL Database provides a relational database as a service based on Microsoft SQL Server. + +This is SQL running the latest SQL branch with database compatibility level available where specific functionality version is required. + +There are a few options on how this can be configured, we can provide a single database that provides one database in the instance, while an elastic pool enables multiple databases that share a pool of capacity and collectively scale. + +These database instances can be accessed like regular SQL instances. + +Additional managed offerings for MySQL, PostgreSQL and MariaDB. + +![](Images/Day32_Cloud7.png) + +### NoSQL Solutions + +Azure Cosmos DB is a scheme agnostic NoSQL implementation. + +99.99% SLA + +Globally distributed database with single-digit latencies at the 99th percentile anywhere in the world with automatic homing. + +Partition key leveraged for the partitioning/sharding/distribution of data. + +Supports various data models (documents, key-value, graph, column-friendly) + +Supports various APIs (DocumentDB SQL, MongoDB, Azure Table Storage and Gremlin) + +![](Images/Day32_Cloud9.png) + +Various consistency models are available based around [CAP theorem](https://en.wikipedia.org/wiki/CAP_theorem). + +![](Images/Day32_Cloud8.png) + +### Caching + +Without getting into the weeds about caching systems such as Redis I wanted to include that Microsoft Azure have their service called Azure Cache for Redis. + +Azure Cache for Redis provides an in-memory data store based on the Redis software. + +- It is an implementation of the open-source Redis Cache. + - A hosted, secure Redis cache instance. + - Different tiers are available + - Application must be updated to leverage the cache. + - Aimed for an application that has high read requirements compared to writes. + - Key-Value store based. + +![](Images/Day32_Cloud10.png) + +I appreciate the last few days have been a lot of note-taking and theory on Microsoft Azure but I wanted to cover the building blocks before we get into the hands-on aspects of how these components come together and work. + +We have one more bit of theory remaining around networking before we can get some scenario-based deployments of services up and running. We also want to take a look at some of the different ways we can interact with Microsoft Azure vs just using the portal that we have been using so far. + +## Resources + +- [Hybrid Cloud and MultiCloud](https://www.youtube.com/watch?v=qkj5W98Xdvw) +- [Microsoft Azure Fundamentals](https://www.youtube.com/watch?v=NKEFWyqJ5XA&list=WL&index=130&t=12s) +- [Google Cloud Digital Leader Certification Course](https://www.youtube.com/watch?v=UGRDM86MBIQ&list=WL&index=131&t=10s) +- [AWS Basics for Beginners - Full Course](https://www.youtube.com/watch?v=ulprqHHWlng&t=5352s) + +See you on [Day 33](day33.md) diff --git a/zh_tw/Days/day33.md b/zh_tw/Days/day33.md new file mode 100644 index 000000000..cca8c15de --- /dev/null +++ b/zh_tw/Days/day33.md @@ -0,0 +1,189 @@ +--- +title: '#90DaysOfDevOps - Microsoft Azure Networking Models + Azure Management - Day 33' +published: false +description: 90DaysOfDevOps - Microsoft Azure Networking Models + Azure Management +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048706 +--- +## Microsoft Azure Networking Models + Azure Management + +As if today marks the anniversary of Microsoft Azure and its 12th Birthday! (1st February 2022) Anyway, we are going to cover the networking models within Microsoft Azure and some of the management options for Azure. So far we have only used the Azure portal but we have mentioned other areas that can be used to drive and create our resources within the platform. + +## Azure Network Models + +### Virtual Networks + +- A virtual network is a construct created in Azure. +- A virtual network has one or more IP ranges assigned to it. +- Virtual networks live within a subscription within a region. +- Virtual subnets are created in the virtual network to break up the network range. +- Virtual machines are placed in virtual subnets. +- All virtual machines within a virtual network can communicate. +- 65,536 Private IPs per Virtual Network. +- Only pay for egress traffic from a region. (Data leaving the region) +- IPv4 & IPv6 Supported. + - IPv6 for public-facing and within virtual networks. + +We can liken Azure Virtual Networks to AWS VPCs. However, there are some differences to note: + +- In AWS a default VNet is created that is not the case in Microsoft Azure, you have to create your first virtual network to your requirements. +- All Virtual Machines by default in Azure have NAT access to the internet. No NAT Gateways as per AWS. +- In Microsoft Azure, there is no concept of Private or Public subnets. +- Public IPs is a resource that can be assigned to vNICs or Load Balancers. +- The Virtual Network and Subnets have their own ACLs enabling subnet level delegation. +- Subnets across Availability Zones whereas in AWS you have subnets per Availability Zones. + +We also have Virtual Network Peering. This enables virtual networks across tenants and regions to be connected using the Azure backbone. Not transitive but can be enabled via Azure Firewall in the hub virtual network. Using a gateway transit allows peered virtual networks to the connectivity of the connected network and an example of this could ExpressRoute to On-Premises. + +### Access Control + +- Azure utilises Network Security Groups, these are stateful. +- Enable rules to be created then assigned to a network security group +- Network security groups applied to subnets or VMs. +- When applied to a subnet it is still enforced at the Virtual Machine NIC it is not an "Edge" device. + +![](Images/Day33_Cloud1.png) + +- Rules are combined in a Network Security Group. +- Based on the priority, flexible configurations are possible. +- Lower priority number means high priority. +- Most logic is built by IP Addresses but some tags and labels can also be used. + +| Description | Priority | Source Address | Source Port | Destination Address | Destination Port | Action | +| ----------- | ---------| -------------- | ----------- | ------------------- | ---------------- | ------ | +| Inbound 443 | 1005 | * | * | * | 443 | Allow | +| ILB | 1010 | Azure LoadBalancer | * | * | 10000 | Allow | +| Deny All Inbound | 4000 | * | * | * | * | DENY | + +We also have Application Security Groups (ASGs) + +- Where NSGs are focused on the IP address ranges which may be difficult to maintain for growing environments. +- ASGs enable real names (Monikers) for different application roles to be defined (Webservers, DB servers, WebApp1 etc.) +- The Virtual Machine NIC is made a member of one or more ASGs. + +The ASGs can then be used in rules that are part of Network Security Groups to control the flow of communication and can still use NSG features like service tags. + +| Action| Name | Source | Destination | Port | +| ------| ------------------ | ---------- | ----------- | ------------ | +| Allow | AllowInternettoWeb | Internet | WebServers | 443(HTTPS) | +| Allow | AllowWebToApp | WebServers | AppServers | 443(HTTPS) | +| Allow | AllowAppToDB | AppServers | DbServers | 1443 (MSSQL) | +| Deny | DenyAllinbound | Any | Any | Any | + +### Load Balancing + +Microsoft Azure has two separate load balancing solutions. (the first party, there are third parties available in the Azure marketplace.) Both can operate with externally facing or internally facing endpoints. + +- Load Balancer (Layer 4) supporting hash-based distribution and port-forwarding. +- App Gateway (Layer 7) supports features such as SSL offload, cookie-based session affinity and URL-based content routing. + +Also with the App Gateway, you can optionally use the Web Application firewall component. + +## Azure Management Tools + +We have spent most of our theory time walking through the Azure Portal, I would suggest that when it comes to following a DevOps culture and process a lot of these tasks especially around provisioning will be done via an API or a command-line tool. I wanted to touch on some of those other management tools that we have available to us as we need to know this for when we are automating the provisioning of our Azure environments. + +### Azure Portal + +The Microsoft Azure Portal is a web-based console, that provides an alternative to command-line tools. You can manage your subscriptions within the Azure Portal. Build, Manage, Monitor everything from a simple web app to complex cloud deployments. Another thing you will find within the portal are these breadcrumbs, JSON as mentioned before is the underpinning of all Azure Resources, It might be that you start in the Portal to understand the features, services and functionality but then later understand the JSON underneath to incorporate into your automated workflows. + +![](Images/Day33_Cloud2.png) + +There is also the Azure Preview portal, this can be used to view and test new and upcoming services and enhancements. + +![](Images/Day33_Cloud3.png) + +### PowerShell + +Before we get into Azure PowerShell it is worth introducing PowerShell first. PowerShell is a task automation and configuration management framework, a command-line shell and a scripting language. We might and dare I say this liken this to what we have covered in the Linux section around shell scripting. PowerShell was very much first found on Windows OS but it is now cross-platform. + +Azure PowerShell is a set of cmdlets for managing Azure resources directly from the PowerShell command line. + +We can see from below that you can connect to your subscription using the PowerShell command `Connect-AzAccount` + +![](Images/Day33_Cloud4.png) + +Then if we wanted to find some specific commands associated with Azure VMs we can run the following command. You could spend hours learning and understanding more about this PowerShell programming language. + +![](Images/Day33_Cloud5.png) + +There are some great quickstarts from Microsoft on getting started and provisioning services from PowerShell [here](https://docs.microsoft.com/en-us/powershell/azure/get-started-azureps?view=azps-7.1.0) + +### Visual Studio Code + +Like many, and as you have all seen my go-to IDE is Visual Studio Code. + +Visual Studio Code is a free source-code editor made by Microsoft for Windows, Linux and macOS. + +You will see from below that there are lots of integrations and tools built into Visual Studio Code that you can use to interact with Microsoft Azure and the services within. + +![](Images/Day33_Cloud6.png) + +### Cloud Shell + +Azure Cloud Shell is an interactive, authenticated, browser-accessible shell for managing Azure resources. It provides the flexibility of choosing the shell experience that best suits the way you work. + +![](Images/Day33_Cloud7.png) + +You can see from the below when we first launch Cloud Shell within the portal we can choose between Bash and PowerShell. + +![](Images/Day33_Cloud8.png) + +To use the cloud shell you will have to provide a bit of storage in your subscription. + +When you select to use the cloud shell it is spinning up a machine, these machines are temporary but your files are persisted in two ways; through a disk image and a mounted file share. + +![](Images/Day33_Cloud9.png) + + - Cloud Shell runs on a temporary host provided on a per-session, per-user basis + - Cloud Shell times out after 20 minutes without interactive activity + - Cloud Shell requires an Azure file share to be mounted + - Cloud Shell uses the same Azure file share for both Bash and PowerShell + - Cloud Shell is assigned one machine per user account + - Cloud Shell persists $HOME using a 5-GB image held in your file share + - Permissions are set as a regular Linux user in Bash + +The above was copied from [Cloud Shell Overview](https://docs.microsoft.com/en-us/azure/cloud-shell/overview) + +### Azure CLI + +Finally, I want to cover the Azure CLI, The Azure CLI can be installed on Windows, Linux and macOS. Once installed you can type `az` followed by other commands to create, update, delete and view Azure resources. + +When I initially came into my Azure learning I was a little confused by there being Azure PowerShell and the Azure CLI. + +I would love some feedback from the community on this as well. But the way I see it is that Azure PowerShell is a module added to Windows PowerShell or PowerShell Core (Also available on other OS but not all) Whereas Azure CLI is a cross-platform command-line program that connects to Azure and executes those commands. + +Both of these options have a different syntax, although they can from what I can see and what I have done do very similar tasks. + +For example, creating a virtual machine from PowerShell would use the `New-AzVM` cmdlet whereas Azure CLI would use `az VM create`. + +You saw previously that I have the Azure PowerShell module installed on my system but then I also have the Azure CLI installed that can be called through PowerShell on my Windows machine. + +![](Images/Day33_Cloud10.png) + +The takeaway here as we already mentioned is about choosing the right tool. Azure runs on automation. Every action you take inside the portal translates somewhere to code being executed to read, create, modify, or delete resources. + +Azure CLI + +- Cross-platform command-line interface, installable on Windows, macOS, Linux +- Runs in Windows PowerShell, Cmd, or Bash and other Unix shells. + +Azure PowerShell + +- Cross-platform PowerShell module, runs on Windows, macOS, Linux +- Requires Windows PowerShell or PowerShell + +If there is a reason you cannot use PowerShell in your environment but you can use .mdor bash then the Azure CLI is going to be your choice. + +Next up we take all the theory we have been through and create some scenarios and get hands-on in Azure. + +## Resources + +- [Hybrid Cloud and MultiCloud](https://www.youtube.com/watch?v=qkj5W98Xdvw) +- [Microsoft Azure Fundamentals](https://www.youtube.com/watch?v=NKEFWyqJ5XA&list=WL&index=130&t=12s) +- [Google Cloud Digital Leader Certification Course](https://www.youtube.com/watch?v=UGRDM86MBIQ&list=WL&index=131&t=10s) +- [AWS Basics for Beginners - Full Course](https://www.youtube.com/watch?v=ulprqHHWlng&t=5352s) + +See you on [Day 34](day34.md) diff --git a/zh_tw/Days/day34.md b/zh_tw/Days/day34.md new file mode 100644 index 000000000..75056702a --- /dev/null +++ b/zh_tw/Days/day34.md @@ -0,0 +1,196 @@ +--- +title: '#90DaysOfDevOps - Microsoft Azure Hands-On Scenarios - Day 34' +published: false +description: 90DaysOfDevOps - Microsoft Azure Hands-On Scenarios +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048763 +--- +## Microsoft Azure Hands-On Scenarios + +The last 6 days have been focused on Microsoft Azure and the public cloud in general, a lot of this foundation had to contain a lot of theory to understand the building blocks of Azure but also this will nicely translate to the other major cloud providers as well. + +I mentioned at the very beginning about getting a foundational knowledge of the public cloud and choosing one provider to at least begin with, if you are dancing between different clouds then I believe you can get lost quite easily whereas choosing one you get to understand the fundamentals and when you have those it is quite easy to jump into the other clouds and accelerate your learning. + +In this final session, I am going to be picking and choosing my hands-on scenarios from this page here which is a reference created by Microsoft and is used for preparations for the [AZ-104 Microsoft Azure Administrator](https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/) + +There are some here such as Containers and Kubernetes that we have not covered in any detail as of yet so I don't want to jump in there just yet. + +In previous posts, we have created most of Modules 1,2 and 3. + +### Virtual Networking +Following [Module 04](https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/Instructions/Labs/LAB_04-Implement_Virtual_Networking.html): + +I went through the above and changed a few namings for the purpose of #90DaysOfDevOps. I also instead of using the Cloud Shell went ahead and logged in with my new user created on previous days with the Azure CLI on my Windows machine. + +You can do this using the `az login` which will open a browser and let you authenticate to your account. + +I have then created a PowerShell script and some references from the module to use to build out some of the tasks below. You can find the associated files in this folder. + (Cloud\01VirtualNetworking) + + Please make sure you change the file location in the script to suit your environment. + +At this first stage we have no virtual network or virtual machines created in our environment, I only have a cloudshell storage location configured in my resource group. + +I first of all run my [PowerShell script](Cloud/01VirtualNetworking/Module4_90DaysOfDevOps.ps1) + + ![](Images/Day34_Cloud1.png) + +- Task 1: Create and configure a virtual network + + ![](Images/Day34_Cloud2.png) + +- Task 2: Deploy virtual machines into the virtual network + + ![](Images/Day34_Cloud3.png) + +- Task 3: Configure private and public IP addresses of Azure VMs + + ![](Images/Day34_Cloud4.png) + +- Task 4: Configure network security groups + +![](Images/Day34_Cloud5.png) +![](Images/Day34_Cloud6.png) + +- Task 5: Configure Azure DNS for internal name resolution + +![](Images/Day34_Cloud7.png) +![](Images/Day34_Cloud8.png) + +### Network Traffic Management +Following [Module 06](https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/Instructions/Labs/LAB_06-Implement_Network_Traffic_Management.html): + +Next walkthrough, from the last one we have gone into our resource group and deleted our resources, if you had not set up the user account like me to only have access to that one resource group you could follow the module changing the name to `90Days*` this will delete all resources and resource group. This will be my process for each of the following lab. + +For this lab I have also created a PowerShell script and some references from the module to use to build out some of the tasks below. You can find the associated files in this folder. + (Cloud\02TrafficManagement) + + +- Task 1: Provision the lab environment + +I first of all run my [PowerShell script](Cloud/02TrafficManagement/Mod06_90DaysOfDevOps.ps1) + +![](Images/Day34_Cloud9.png) + +- Task 2: Configure the hub and spoke network topology + +![](Images/Day34_Cloud10.png) + +- Task 3: Test transitivity of virtual network peering + +For this my 90DaysOfDevOps group did not have access to the Network Watcher because of permissions, I expect this is because Network Watchers are one of those resources that are not tied to a resource group which is where our RBAC was covered for this user. I added the East US Network Watcher contributer role to the 90DaysOfDevOps group. + +![](Images/Day34_Cloud11.png) +![](Images/Day34_Cloud12.png) +![](Images/Day34_Cloud13.png) + +^ This is expected, since the two spoke virtual networks are not peered with each other (virtual network peering is not transitive). + +- Task 4: Configure routing in the hub and spoke topology + +I had another issue here with my account not being able to run the script as my user within the group 90DaysOfDevOps which I am unsure of so I did jump back into my main admin account. The 90DaysOfDevOps group is an owner of everything in the 90DaysOfDevOps Resource Group so would love to understand why I cannot run a command inside the VM? + +![](Images/Day34_Cloud14.png) +![](Images/Day34_Cloud15.png) + +I then was able to go back into my michael.cade@90DaysOfDevOps.com account and continue this section. Here we are running the same test again but now with the result being reachable. + +![](Images/Day34_Cloud16.png) + +- Task 5: Implement Azure Load Balancer + +![](Images/Day34_Cloud17.png) +![](Images/Day34_Cloud18.png) + +- Task 6: Implement Azure Application Gateway + +![](Images/Day34_Cloud19.png) +![](Images/Day34_Cloud20.png) + +### Azure Storage +Following [Module 07](https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/Instructions/Labs/LAB_07-Manage_Azure_Storage.html): + +For this lab I have also created a PowerShell script and some references from the module to use to build out some of the tasks below. You can find the associated files in this folder. + (Cloud\03Storage) + +- Task 1: Provision the lab environment + +I first of all run my [PowerShell script](Cloud/03Storage/Mod07_90DaysOfDeveOps.ps1) + +![](Images/Day34_Cloud21.png) + +- Task 2: Create and configure Azure Storage accounts + +![](Images/Day34_Cloud22.png) + +- Task 3: Manage blob storage + +![](Images/Day34_Cloud23.png) + +- Task 4: Manage authentication and authorization for Azure Storage + +![](Images/Day34_Cloud24.png) +![](Images/Day34_Cloud25.png) + +I was a little impatient waiting for this to be allowed but it did work eventually. + +![](Images/Day34_Cloud26.png) + + +- Task 5: Create and configure an Azure Files shares + +On the run command this would not work with michael.cade@90DaysOfDevOps.com so I used my elevated account. + +![](Images/Day34_Cloud27.png) +![](Images/Day34_Cloud28.png) +![](Images/Day34_Cloud29.png) + + +- Task 6: Manage network access for Azure Storage + +![](Images/Day34_Cloud30.png) + +### Serverless (Implement Web Apps) +Following [Module 09a](https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/Instructions/Labs/LAB_09a-Implement_Web_Apps.html): + + +- Task 1: Create an Azure web app + +![](Images/Day34_Cloud31.png) + +- Task 2: Create a staging deployment slot + +![](Images/Day34_Cloud34.png) + +- Task 3: Configure web app deployment settings + +![](Images/Day34_Cloud33.png) + +- Task 4: Deploy code to the staging deployment slot + +![](Images/Day34_Cloud32.png) + +- Task 5: Swap the staging slots + +![](Images/Day34_Cloud35.png) + +- Task 6: Configure and test autoscaling of the Azure web app + +This script I am using can be found in (Cloud/05Serverless) + +![](Images/Day34_Cloud36.png) + +This wraps up the section on Microsoft Azure and the public cloud in general. I will say that I had lots of fun attacking and working through this scenarios. + +## Resources + +- [Hybrid Cloud and MultiCloud](https://www.youtube.com/watch?v=qkj5W98Xdvw) +- [Microsoft Azure Fundamentals](https://www.youtube.com/watch?v=NKEFWyqJ5XA&list=WL&index=130&t=12s) +- [Google Cloud Digital Leader Certification Course](https://www.youtube.com/watch?v=UGRDM86MBIQ&list=WL&index=131&t=10s) +- [AWS Basics for Beginners - Full Course](https://www.youtube.com/watch?v=ulprqHHWlng&t=5352s) + +Next we will be diving into version control systems, specifically around git and then also code repository overviews and we will be choosing GitHub as this is my preferred option. + +See you on [Day 35](day35.md) diff --git a/zh_tw/Days/day35.md b/zh_tw/Days/day35.md new file mode 100644 index 000000000..e7d858ec1 --- /dev/null +++ b/zh_tw/Days/day35.md @@ -0,0 +1,143 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: Git - Version Control - Day 35' +published: false +description: 90DaysOfDevOps - The Big Picture Git - Version Control +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049041 +--- +## The Big Picture: Git - Version Control + +Before we get into git, we need to understand what version control is and why? In this opener for Git, we will take a look at what version control is, the basics of git. + +### What is Version Control? + +Git is not the only version control system so here we want to cover what options and what methodologies are available around version control. + +The most obvious and a big benefit of Version Control is the ability to track a project's history. We can look back over this repository using `git log` and see that we have many commits and many comments and what has happened so far in the project. Don't worry we will get into the commands later. Now think if this was an actual software project full of source code and multiple people are committing to our software at different times, different authors and then reviewers all are logged here so that we know what has happened, when, by whom and who reviewed. + +![](Images/Day35_Git1.png) + +Version Control before it was cool, would have been something like manually creating a copy of your version before you made changes. It might be that you also comment out old useless code with the just in case mentality. + +![](Images/Day35_Git2.png) + +I have started using version control over not just source code but pretty much anything, talks about projects like this (90DaysOfDevOps) because why would you not want that rollback and log of everything that has gone on. + +However, a big disclaimer **Version Control is not a Backup!** + +Another benefit of Version Control is the ability to manage multiple versions of a project, Let's create an example, we have a free app that is available on all operating systems and then we have a paid-for app also available on all operating systems. The majority of the code is shared between both applications. We could copy and paste our code each commit to each app but that is going to be very messy especially as you scale your development to more than just one person, also mistakes will be made. + +The premium app is where we are going to have additional features, let's call them premium commits, the free edition will just contain the normal commits. + +The way this is achieved in Version Control is through branching. + +![](Images/Day35_Git3.png) + +Branching allows for two code streams for the same app as we stated above. But we will still want new features that land in our source code free version to be in our premium and to achieve this we have something called merging. + +![](Images/Day35_Git4.png) + +Now, this same easy but merging can be complicated because you could have a team working on the free edition and you could have another team working on the premium paid for version and what if both change code that affects aspects of the overall code. Maybe a variable gets updated and breaks something. Then you have a conflict that breaks one of the features. Version Control cannot fix the conflicts that are down to you. But version control allows this to be easily managed. + +The primary reason if you have not picked up so far for version control, in general, is the ability to collaborate. The ability to share code amongst developers and when I say code as I said before more and more we are seeing much more use cases for other reasons to use source control, maybe its a joint presentation you are working on with a colleague or a 90DaysOfDevOps challenge where you have the community offering their corrections and updates throughout the project. + +Without version control how did teams of software developers even handle this? I find it hard enough when I am working on my projects to keep track of things. I expect they would split out the code into each functional module. Maybe a little part of the puzzle then was bringing the pieces together and then problems and issues before anything would get released. + +With version control, we have a single source of truth. We might all still work on different modules but it enables us to collaborate better. + +![](Images/Day35_Git5.png) + +Another thing to mention here is that it's not just developers that can benefit from Version Control, it's all members of the team to have visibility but also tools all having awareness or leverage, Project Management tools can be linked here, tracking the work. We might also have a build machine for example Jenkins which we will talk about in another module. A tool that Builds and Packages the system, automating the deployment tests and metrics. + +### What is Git? + +Git is a tool that tracks changes to source code or any file, or we could also say Git is an open-source distributed version control system. + +There are many ways in which git can be used on our systems, most commonly or at least for me I have seen it in at the command line, but we also have graphical user interfaces and tools like Visual Studio Code that have git aware operations we can take advantage of. + +Now we are going to run through a high-level overview before we even get Git installed on our local machine. + +Let's take the folder we created earlier. + +![](Images/Day35_Git2.png) + +To use this folder with version control we first need to initiate this directory using the `git init command. For now, just think that this command puts our directory as a repository in a database somewhere on our computer. + +![](Images/Day35_Git6.png) + +Now we can create some files and folders and our source code can begin or maybe it already has and we have something in here already. We can use the `git add .` command which puts all files and folders in our directory into a snapshot but we have not yet committed anything to that database. We are just saying all files with the `.` are ready to be added. + +![](Images/Day35_Git7.png) + +Then we want to go ahead and commit our files, we do this with the `git commit -m "My First Commit"` command. We can give a reason for our commit and this is suggested so we know what has happened for each commit. + +![](Images/Day35_Git8.png) + +We can now see what has happened within the history of the project. Using the `git log` command. + +![](Images/Day35_Git9.png) + +We can also check the status of our repository by using `git status` this shows we have nothing to commit and we can add a new file called samplecode.ps1. If we then run the same `git status you will see that we file to be committed. + +![](Images/Day35_Git10.png) + +Add our new file using the `git add samplecode.ps1` command and then we can run `git status` again and see our file is ready to be committed. + +![](Images/Day35_Git11.png) + +Then issue `git commit -m "My Second Commit"` command. + +![](Images/Day35_Git12.png) + +Another `git status` now shows everything is clean again. + +![](Images/Day35_Git13.png) + +We can then use the `git log` command which shows the latest changes and first commit. + +![](Images/Day35_Git14.png) + +If we wanted to see the changes between our commits i.e what files have been added or modified we can use the `git diff b8f8 709a` + +![](Images/Day35_Git15.png) + +Which then displays what has changed in our case we added a new file. + +![](Images/Day35_Git16.png) + +We can also and we will go deeper into this later on but we can jump around our commits i.e we can go time travelling! By using our commit number we can use the `git checkout 709a` command to jump back in time without losing our new file. + +![](Images/Day35_Git17.png) + +But then equally we will want to move forward as well and we can do this the same way with the commit number or you can see here we are using the `git switch -` command to undo our operation. + +![](Images/Day35_Git18.png) + +The TLDR; + +- Tracking a projects history +- Managing multiple versions of a project +- Sharing code amongst developers and a wider scope of teams and tools +- Coordinating teamwork +- Oh and there is some time travel! + + +This might have seemed a jump around but hopefully, you can see without really knowing the commands used the powers and the big picture behind Version Control. + +Next up we will be getting git installed and set up on your local machine and diving a little deeper into some other use cases and commands that we can achieve in Git. + + + +## Resources + +- [What is Version Control?](https://www.youtube.com/watch?v=Yc8sCSeMhi4) +- [Types of Version Control System](https://www.youtube.com/watch?v=kr62e_n6QuQ) +- [Git Tutorial for Beginners](https://www.youtube.com/watch?v=8JJ101D3knE&t=52s) +- [Git for Professionals Tutorial](https://www.youtube.com/watch?v=Uszj_k0DGsg) +- [Git and GitHub for Beginners - Crash Course](https://www.youtube.com/watch?v=RGOj5yH7evk&t=8s) +- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) + +See you on [Day 36](day36.md) + diff --git a/zh_tw/Days/day36.md b/zh_tw/Days/day36.md new file mode 100644 index 000000000..68e964ff3 --- /dev/null +++ b/zh_tw/Days/day36.md @@ -0,0 +1,152 @@ +--- +title: '#90DaysOfDevOps - Installing & Configuring Git - Day 36' +published: false +description: 90DaysOfDevOps - Installing & Configuring Git +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048738 +--- +## Installing & Configuring Git + +Git is a open source, cross platform tool for version control. If I like me you are using Ubuntu or most Linux environments you might find that you already git installed but we are going to run through the install and configuration. + +Even if you already have git installed on your system it is also a good idea to make sure we are up to date. + +### Installing Git + +As already mentioned Git is cross platform, we will be running through Windows and Linux but you can find macOS also listed [here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) + +For [Windows](https://git-scm.com/download/win) we can grab our installers from the official site. + +You could also use `winget` on your Windows machine, think of this as your Windows Application Package Manager. + +Before we install anything lets see what version we have on our Windows Machine. Open a PowerShell window and run `git --version` + +![](Images/Day36_Git1.png) + +We can also check our WSL Ubuntu version of Git as well. + +![](Images/Day36_Git2.png) + +At the time of writing the latest Windows release is `2.35.1` so we have some updating to do there which I will run through. I expect the same for Linux. + +I went ahead and downloaded the latest installer and ran through the wizard and will document that here. The important thing to note is that git will uninstall previous versions before installing the latest. + +Meaning that the process shown below is also the same process for the most part as if you were installing from no git. + +It is a very simple installation. Once downloaded double click and get started. Read through the GNU license agreement. But remember this is free and open source software. + +![](Images/Day36_Git3.png) + +Now we can choose additional components that we would like to also install but also associate with git. On Windows I always make sure I install Git Bash as this allows us to run bash scripts on Windows. + +![](Images/Day36_Git4.png) + +We can then choose which SSH Executable we wish to use. IN leave this as the bundled OpenSSH that you might have seen in the Linux section. + +![](Images/Day36_Git5.png) + +We then have experimental features that we may wish to enable, for me I don't need them so I don't enable, you can always come back in through the installation and enable these later on. + +![](Images/Day36_Git6.png) + +Installation complete, we can now choose to open Git Bash and or the latest release notes. + +![](Images/Day36_Git7.png) + +The final check is to take a look in our PowerShell window what version of git we have now. + +![](Images/Day36_Git8.png) + +Super simple stuff and now we are on the latest version. On our Linux machine we seemed to be a little behind so we can also walk through that update process. + +I simply run the `sudo apt-get install git` command. + +![](Images/Day36_Git9.png) + +You could also run the following which will add the git repository for software installations. + +``` +sudo add-apt-repository ppa:git-core/ppa -y +sudo apt-get update +sudo apt-get install git -y +git --version +``` +### Configuring Git + +When we first use git we have to define some settings, + +- Name +- Email +- Default Editor +- Line Ending + +This can be done at three levels + +- System = All users +- Global = All repositories of the current user +- Local = The current repository + +Example: +`git config --global user.name "Michael Cade"` +`git config --global user.email Michael.Cade@90DaysOfDevOPs.com"` +Depending on your Operating System will determine the default text editor. In my Ubuntu machine without setting the next command is using nano. The below command will change this to visual studio code. + +`git config --global core.editor "code --wait"` + +now if we want to be able to see all git configuration then we can use the following command. + +`git config --global -e` + +![](Images/Day36_Git10.png) + +On any machine this file will be named `.gitconfig` on my Windows machine you will find this in your user account directory. + +![](Images/Day36_Git11.png) + +### Git Theory + +I mentioned in the post yesterday that there were other version control types and we can split these down into two different types. One is Client Server and the other is Distributed. + +### Client-Server Version Control + +Before git was around Client-Server was the defacto method for version control. An example of this would be [Apache Subversion](https://subversion.apache.org/) which is an open source version control system founded in 2000. + +In this model of Client-Server version control, the first step the developer downloads the source code, the actual files from the server. This doesnt remove the conflicts but it does remove the complexity of the conflicts and how to resolve them. + +![](Images/Day36_Git12.png) + +Now for example lets say we have two developers working on the same files and one wins the race and commits or uploads their file back to the server first with their new changes. When the second developer goes to update they have a conflict. + +![](Images/Day36_Git13.png) + +So now the Dev needs to pull down the first devs code change next to theirs check and then commit once those conflicts have been settled. + +![](Images/Day36_Git15.png) + +### Distributed Version Control + +Git is not the only distributed version control system. But it is very much the defacto. + +Some of the major benefits of Git are: + +- Fast +- Smart +- Flexible +- Safe & Secure + +Unlike the Client-Server version control model, each developer downloads the the source repository meaning everything. History of commits, all the branches etc. etc. + +![](Images/Day36_Git16.png) + +## Resources + +- [What is Version Control?](https://www.youtube.com/watch?v=Yc8sCSeMhi4) +- [Types of Version Control System](https://www.youtube.com/watch?v=kr62e_n6QuQ) +- [Git Tutorial for Beginners](https://www.youtube.com/watch?v=8JJ101D3knE&t=52s) +- [Git for Professionals Tutorial](https://www.youtube.com/watch?v=Uszj_k0DGsg) +- [Git and GitHub for Beginners - Crash Course](https://www.youtube.com/watch?v=RGOj5yH7evk&t=8s) +- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) + +See you on [Day 37](day37.md) diff --git a/zh_tw/Days/day37.md b/zh_tw/Days/day37.md new file mode 100644 index 000000000..fd520d9f2 --- /dev/null +++ b/zh_tw/Days/day37.md @@ -0,0 +1,173 @@ +--- +title: '#90DaysOfDevOps - Gitting to know Git - Day 37' +published: false +description: 90DaysOfDevOps - Gitting to know Git +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048707 +--- +## Gitting to know Git + +Apoligies for the terrible puns in the title and throughout. I am surely not the first person to turn Git into a dad joke! + +In the last two posts we learnt about version control systems, and some of the fundamental workflows of git as a version control system [Day 35](day35.md) Then we got git installed on our system, updated and configured. We also went a little deeper on the theory between Client-Server version control system and Git which is a distributed version control system [Day 36](day36.md). + +Now we are going to run through some of the commands and use cases that we will all commonly see with git. + +### Where to git help with git? + +There is going to be times where you just cannot remember or just don't know the command you need to get things done with git. You are going to need help. + +It goes without saying that google or any search engine is likely to be your first port of call when searching help. + +Secondly the next place is going to be the official git site and the documentation. [git-scm.com/docs](http://git-scm.com/docs) Here you will find not only a solid reference to all the commands available but also lots of different resources. + +![](Images/Day37_Git1.png) + +We can also access this same documentation which is super useful if you are without connectivity from the terminal. If we chose the `git add` command for example we can run `git add --help` and we see below the manual. + +![](Images/Day37_Git2.png) + +We can also in the shell use `git add -h` which is going to give us a short summary of the options we have available. + +![](Images/Day37_Git3.png) + +### Myths surrounding Git + +"Git has no access control" - You can empower a leader to maintain source code. + +"Git is too heavy" - Git has the ability to provide shallow repositories which basically means a reduced amount of history if you have large projects. + +### Real shortcomings + +Not ideal for Binary files. Great for source code but not great for executable files or videos for example. + +Git is not user friendly, the fact that we have to spend time talking about commands and functions of the tool is probably a key sign of that. + +Overall though, git is hard to learn, but easy to use. + +### The git ecosystem + +I want to briefly cover the ecosystem around git but not deep dive into some of these areas but I think its important to note these here at a high level. + +Almost all modern development tools support Git. + +- Developer tools - We have already mentioned visual studio code but you will find git plugins and integrations into sublime text and other text editors and IDEs. + +- Team tools - Also mentioned around tools like Jenkins from a CI/CD point of view, Slack from a messaging framework and Jira for project management and issue tracking. + +- Cloud Providers - All the large cloud providers support git, Microsoft Azure, Amazon AWS, Google Cloud Platform. + +- Git-Based services - Then we have the GitHub, GitLab and BitBucket of which we will cover in more detail later on. I have heard these services as the social network for code! + +### The Git Cheatsheet + +We have not covered most of these commands but having looked at some cheatsheets available online I wanted to document some of the git commands and what their purpose are. We don't need to remember these all, and with more hands on practice and using you will pick at least the git basics. + +I have taken these from [atlassian](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet) but writing them down and reading the description is a good way to get to know what the commands are as well as getting hands on in every day tasks. + +### Git Basics + +| Command | Example | Description | +| --------------- | ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | +| git init | `git init ` | Create an empty git repository in specified directory. | +| git clone | `git clone ` | Clone repository located at onto local machine. | +| git config | `git config user.name` | Define author name to be used for all commits in current repository `system`, `global`, `local` flag to set config options. | +| git add | `git add ` | Stage all changes in for the next commit. We can also add and <.> for everything. | +| git commit -m | `git commit -m ""` | Commit the staged snapshot, use to detail what is being committed. | +| git status | `git status` | List files that are staged, unstaged and untracked. | +| git log | `git log` | Display all commit history using the default format. There are additional options with this command. | +| git diff | `git diff` | Show unstaged changes between your index and working directory. | + +### Git Undoing Changes + +| Command | Example | Description | +| --------------- | ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| git revert | `git revert ` | Create a new commit that undoes all of the changes made in then apply it to the current branch. | +| git reset | `git reset ` | Remove from the staging area, but leave the working directory unchanged. This unstages a file without overwriting any changes. | +| git clean | `git clean -n` | Shows which files would be removed from the working directory. Use `-f` in place of `-n` to execute the clean. | + +### Git Rewriting History + +| Command | Example | Description | +| --------------- | ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| git commit | `git commit --amend` | Replace the last commit with the staged changes and last commit combined. Use with nothing staged to edit the last commit’s message. | +| git rebase | `git rebase ` | Rebase the current branch onto . can be a commit ID, branch name, a tag, or a relative reference to HEAD. | +| git reflog | `git reflog` | Show a log of changes to the local repository’s HEAD. Add --relative-date flag to show date info or --all to show all refs. | + +### Git Branches + +| Command | Example | Description | +| --------------- | ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| git branch | `git branch` | List all of the branches in your repo. Add a argument to create a new branch with the name . | +| git checkout | `git checkout -b ` | Create and check out a new branch named . Drop the -b flag to checkout an existing branch. | +| git merge | `git merge ` | Merge into the current branch. | + +### Git Remote Repositories + +| Command | Example | Description | +| --------------- | ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| git remote add | `git remote add ` | Create a new connection to a remote repo. After adding a remote, you can use as a shortcut for in other commands. | +| git fetch | `git fetch ` | Fetches a specific , from the repo. Leave off to fetch all remote refs. | +| git pull | `git pull ` | Fetch the specified remote’s copy of current branch and immediately merge it into the local copy. | +| git push | `git push ` | Push the branch to , along with necessary commits and objects. Creates named branch in the remote repo if it doesn’t exist. | + +### Git Diff + +| Command | Example | Description | +| --------------- | ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | +| git diff HEAD | `git diff HEAD` | Show difference between working directory and last commit. | +| git diff --cached | `git diff --cached` | Show difference between staged changes and last commit | + +### Git Config + +| Command | Example | Description | +| ----------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| git config --global user.name | `git config --global user.name ` | Define the author name to be used for all commits by the current user. | +| git config --global user.email | `git config --global user.email ` | Define author email to be used for all commits by the current user. | +| git config --global alias | `git config --global alias ` | Create shortcut for a git command . | +| git config --system core.editor | `git config --system core.editor ` | Set the text editor to be used by commands for all users on the machine. arg should be the comamnd that launches the desired editor. | +| git config --global --edit | `git config --global --edit ` | Open the global configuration file in a text editor for manual editing. | + +### Git Rebase + +| Command | Example | Description | +| ------------------------------------- | ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------- | +| git rebase -i | `git rebase -i ` | Interactively rebase current branch onto . Launches editor to enter commands for how each commit will be transferred to the new base. | + +### Git Pull + +| Command | Example | Description | +| ------------------------------------- | ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------- | +| git pull --rebase | `git pull --rebase ` | Fetch the remote’s copy of current branch and rebases it into the local copy. Uses git rebase instead of merge to integrate the branches. | + +### Git Reset + +| Command | Example | Description | +| ------------------------- | --------------------------| --------------------------------------------------------------------------------------------------------------------------------------------- | +| git reset | `git reset ` | Reset staging area to match most recent commit, but leave the working directory unchanged. | +| git reset --hard | `git reset --hard` | Reset staging area and working directory to match most recent commit and overwrites all changes in the working directory | +| git reset | `git reset ` | Move the current branch tip backward to , reset the staging area to match, but leave the working directory alone | +| git reset --hard | `git reset --hard ` | Same as previous, but resets both the staging area & working directory to match. Deletes uncommitted changes, and all commits after . | + +### Git Push + +| Command | Example | Description | +| ------------------------- | --------------------------| --------------------------------------------------------------------------------------------------------------------------------------------- | +| git push --force | `git push --force` | Forces the git push even if it results in a non-fast-forward merge. Do not use the --force flag unless you’re absolutely sure you know what you’re doing. | +| git push --all | `git push --all` | Push all of your local branches to the specified remote. | +| git push --tags | `git push --tags` | Tags aren’t automatically pushed when you push a branch or use the --all flag. The --tags flag sends all of your local tags to the remote repo. | + +## Resources + +- [What is Version Control?](https://www.youtube.com/watch?v=Yc8sCSeMhi4) +- [Types of Version Control System](https://www.youtube.com/watch?v=kr62e_n6QuQ) +- [Git Tutorial for Beginners](https://www.youtube.com/watch?v=8JJ101D3knE&t=52s) +- [Git for Professionals Tutorial](https://www.youtube.com/watch?v=Uszj_k0DGsg) +- [Git and GitHub for Beginners - Crash Course](https://www.youtube.com/watch?v=RGOj5yH7evk&t=8s) +- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) +- [Git cheatsheet](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet) + + +See you on [Day 38](day38.md) diff --git a/zh_tw/Days/day38.md b/zh_tw/Days/day38.md new file mode 100644 index 000000000..3be9b3fc4 --- /dev/null +++ b/zh_tw/Days/day38.md @@ -0,0 +1,126 @@ +--- +title: '#90DaysOfDevOps - Staging & Changing - Day 38' +published: false +description: 90DaysOfDevOps - Staging & Changing +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049042 +--- +## Staging & Changing + +We have already covered some of the basics but putting things into a walkthrough makes it better for me to learn and understand how and why we are doing it this way. Before we get into any git-based services such as GitHub, git has its powers that we can take advantage of on our local workstation. + +We are going to take the project folder we created at the start of the git session and we are going to walk through some of the simple steps we can do with git. We created a folder on our local machine and we initialised it with the `git init` command + +![](Images/Day38_Git1.png) + +We can also see now that we have initialised the folder we have a hidden folder in our directory. + +![](Images/Day38_Git2.png) + +This is where the details of the git repository are stored as well as the information regarding our branches and commits. + +### Staging Files + +We then start working on our empty folder and maybe we add some source code as a first days work. We create our readme.mdfile and we can see that file in the directory, next we check our `git status` and it knows about the new readme.mdfile but we have not committed the file yet. + +![](Images/Day38_Git3.png) + +We can stage our readme.mdfile with the `git add README.md` command then we can see changes to be committed which we did not have before and a green new file. + +![](Images/Day38_Git4.png) + +Next up we want to commit this, our first commit or our first snapshot of our project. We can do this by using the `git commit -m "Meaningful message"` command so that we can easily see what has changed for each commit. Also, notice the yellow cross changes now to a green tick. This is something I have within my terminal with the theme I use, something we covered in the Linux section. + +![](Images/Day38_Git5.png) + +### Committing Changes + +We are going to most likely want to add more files or even change the files we have in our directory. We have already done our first commit above. But now we are going to add more details and more files. + +We could repeat our process from before, create or edit our file > `git add .` to add all files to the staging area then `git commit -m "meaningful message"` and this would work just fine. But to be able to offer a meaningful message on commit of what has changed you might not want to write something out like `git commit -m "Well, I changed some code because it did not work and when I fixed that I also added something new to the readme.mdto ensure everyone knew about the user experience and then I made a tea."` I mean this would work as well although probably make it descriptive but the preferred way here is to add this with a text editor. + +If we run `git commit` after running `git add` it will open our default text editor which in my case here is nano. Here are the steps I took to add some changes to the file, ran `git status` to show what is and what is not staged. Then I used `git add` to add the file to the staging area, then ran `git commit` which opened nano. + +![](Images/Day38_Git6.png) + +When nano opens you can then add your short and long description and then save the file. + +![](Images/Day38_Git7.png) + +### Committing Best Practices + +There is a balance here to when to commit, commit often. We do not want to be waiting to be finished the project before committing, each commit should be meaningful and they also should not be coupled with non-relevant tasks with each other. If you have a bug fix and a typo make sure they are two separate commits as a best practice. + +Make the commit message mean something. + +In terms of wording, the team or yourself should be sticking to the same wording for each commit. + +### Skipping the Staging Area + +Do we always have to stage our changes before committing them? + +The answer is yes but don't see this as a shortcut, you have to be sure 100% that you are not needing that snapshot to roll back to, it is a risky thing to do. + +![](Images/Day38_Git8.png) + +### Removing Files + +What about removing files from our project, maybe we have another file in our directory that we have committed but now the project no longer needs or using it, as a best practice we should remove it. + +Just because we remove the file from the directory, git is still aware of this file and we also need to remove it from the repository. You can see the workflow for this below. + +![](Images/Day38_Git9.png) + +That could be a bit of a pain to either remember or have to deal with if you have a large project which has many moving files and folders. We can do this with one command with `git rm oldcode.ps1` + +![](Images/Day38_Git10.png) + +### Renaming or Moving Files + +Within our operating system, we can rename and move our files. We will no doubt need to do this from time to time with our projects. Similar to removing though there is a two-step process, we change our files on our OS and then we have to modify and make sure that the staging area or that the files are added correctly. Steps as follows: + +![](Images/Day38_Git11.png) + +However, like removing files from the operating system and then the git repository we can perform this rename using a git command too. + +![](Images/Day38_Git12.png) + +### Ignoring Files + +We may have the requirement to ignore files or folders within our project that we might be using locally or that will be just wasted space if we were to share with the overall project, a good example of this could be logs. I also think using this for secrets that you do not want to be shared out in public or across teams. + +We can ignore files by adding folders or files to the `.gitignore` file in our project directory. + +![](Images/Day38_Git13.png) + +You can then open the `.gitignore` file and see that we have the logs/ directory present. But we could also add additional files and folders here to ignore. + +![](Images/Day38_Git14.png) + +We can then see `git status` and then see what has happened. + +![](Images/Day38_Git15.png) + +There are also ways in which you might need to go back and ignore files and folders, maybe you did want to share the logs folder but then later realised that you didn't want to. You will have to use `git rm --cached ` to remove files and folders from the staging area if you have a previously tracked folder that you now want to ignore. + +### Short Status + +We have been using `git status` a lot to understand what we have in our staging area and what we do not, it's a very comprehensive command with lots of detail. Most of the time you will just want to know what has been modified or what is new? We can use `git status -s` for a short status of this detail. I would usually set an alias on my system to just use `git status -s` vs the more detailed command. + +![](Images/Day38_Git16.png) + +In the post tomorrow we will continue to look through these short examples of these common git commands. + +## Resources + +- [What is Version Control?](https://www.youtube.com/watch?v=Yc8sCSeMhi4) +- [Types of Version Control System](https://www.youtube.com/watch?v=kr62e_n6QuQ) +- [Git Tutorial for Beginners](https://www.youtube.com/watch?v=8JJ101D3knE&t=52s) +- [Git for Professionals Tutorial](https://www.youtube.com/watch?v=Uszj_k0DGsg) +- [Git and GitHub for Beginners - Crash Course](https://www.youtube.com/watch?v=RGOj5yH7evk&t=8s) +- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) +- [Git cheatsheet](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet) + +See you on [Day 39](day39.md) diff --git a/zh_tw/Days/day39.md b/zh_tw/Days/day39.md new file mode 100644 index 000000000..501a4b502 --- /dev/null +++ b/zh_tw/Days/day39.md @@ -0,0 +1,211 @@ +--- +title: '#90DaysOfDevOps - Viewing, unstaging, discarding & restoring - Day 39' +published: false +description: '90DaysOfDevOps - Viewing, unstaging, discarding & restoring' +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048827 +--- +## Viewing, unstaging, discarding & restoring + +Continuing on from where we finished yesterday around some of the commands that we have with git and how to leverage git with your projects. Remember we have not touched GitHub or any other git based services yet this is all to help you keep control of your projects locally at the moment, but they will all become useful when we start to integrate into those tools. + +### Viewing the Staged and Unstaged Changes + +It is good practice to make sure you view the staged and unstaged code before committing. We can do this by running the `git diff --staged` command + +![](Images/Day39_Git1.png) + +This then shows us all the changes we have made and all new files we have added or deleted. + +changes in the modified files are indicated with `---` or `+++` you can see below that we just added +add some text below which means they are new lines. + +![](Images/Day39_Git2.png) + +We can also run `git diff` to compare our staging area with our working directory. If we make some changes to our newly added file code.txt and add some lines of text. + +![](Images/Day39_Git3.png) + +If we then run `git diff` we compare and see the output below. + +![](Images/Day39_Git4.png) + +### Visual Diff Tools + +For me the above is more confusing so I would much rather use a visual tool, + +To name a few visual diff tools: + +- KDiff3 +- P4Merge +- WinMerge (Windows Only) +- VSCode + +To set this in git we run the following command `git config --global diff.tool vscode` + +We are going to run the above and we are going to set some parameters when we launch VScode. + +![](Images/Day39_Git5.png) + +We can also check our configuration with `git config --global -e` + +![](Images/Day39_Git6.png) + +We can then use `git difftool` to now open our diff visual tool. + +![](Images/Day39_Git7.png) + +Which then opens our VScode editor on the diff page and compares the two, we have only modified one file from nothing to now adding a line of code on the right side. + +![](Images/Day39_Git8.png) + +I find this method much easier to track changes and this is something similar to what we will see when we look into git based services such as GitHub. + +We can also use `git difftool --staged` to compare stage with committed files. + +![](Images/Day39_Git9.png) + +Then we can cycle through our changed files before we commit. + +![](Images/Day39_Git10.png) + +I am using VScode as my IDE and like most IDEs they have this functionality built in it is very rare you would need to run these commands from the terminal, although helpful if you don't have an IDE installed for some reason. + +### Viewing the History + +We previously touched on `git log` which will provide us a comprehensive view on all commits we have made in our repository. + +![](Images/Day39_Git11.png) + +Each commit has its own hexadecimal string, unique to the repository. Here you can see which branch we are working on and then also the author, date and commit message. + +We also have `git log --oneline` and this gives us a much smaller version of the hexadecimal string whcih we can use in other `diff` commands. We also only have the one line description or commit message. + +![](Images/Day39_Git12.png) + +We can reverse this into a start with the first commit by running `git log --oneline --reverse` and now we see our first commit at the top of our page. + +![](Images/Day39_Git13.png) + +### Viewing a Commit + +Being able to look at the commit message is great if you have been concious about following best practices and you have added a meaningful commit message, however there is also `git show` command which allows us to inspect and view a commit. + +We can use `git log --oneline --reverse` to get a list of our commits. and then we can take those and run `git show ` + +![](Images/Day39_Git14.png) + +The output of that command will look like below with the detail of the commit, author and what actually changed. + +![](Images/Day39_Git15.png) + +We can also use `git show HEAD~1` where 1 is how many steps back from the current version we want to get back to. + +This is great if you want some detail on your files, but if we want to list all the files in a tree for the whole snapshot directory. We can achieve this by using the `git ls-tree HEAD~1` command, again going back one snapshot from the last commit. We can see below we have two blobs, these indicate files where as tree would indicate a directory. You can also see commits and tags in this information. + +![](Images/Day39_Git16.png) + +We can then use the above to drill in and see the contents of our file (blobs) using the `git show` command. + +![](Images/Day39_Git17.png) + +Then the contents of that specific version of the file will be shown. + +![](Images/Day39_Git18.png) + +### Unstaging Files + +There will be a time where you have maybe used `git add .` but actually there are files you do not wish to commit to that snapshot just yet. In this example below I have added newfile.txt to my staging area but I am not ready to commit this file so I am going to use the `git restore --staged newfile.txt` to undo the `git add` step. + +![](Images/Day39_Git19.png) + +We can also do the same to modified files such as main.js and unstage the commit, see above we have a greem M for modified and then below we are unstaging those changes. + +![](Images/Day39_Git20.png) + +I have actually found this command quite useful during the 90DaysOfDevOps as I sometimes work ahead of the days where I feel I want to make notes for the following day but I don't want to commit and push to the public GitHub repository. + +### Discarding Local Changes + +Some times we might make changes but we are not happy with those changes and we want to throw them away. We are going to use the `git restore` command again and we are going to be able to restore files from our snapshots or previous versions. We can run `git restore .` against our directory and we will restore everything from our snapshot but notice that our untracked file is still present. There is no previous file being tracked called newfile.txt. + +![](Images/Day39_Git21.png) + +Now to remove newfile.txt or any untracked files. We can use `git clean` we will get a warning alone. + +![](Images/Day39_Git22.png) + +Or if we know the consequences then we might want to run `git clean -fd` to force and remove all directories. + +![](Images/Day39_Git23.png) + +### Restoring a File to an Earlier Version + +As we have alluded to throughout a big portion of what Git is able to help with is being able to restore copies of your files from your snapshots (this is not a backup but it is a very fast restore point) My advice is that you also save copies of your code in other locations using a backup solution for this. + +As an example let's go and delete our most important file in our directory, notice we are using unix based commands to remove this from the directory, not git commands. + +![](Images/Day39_Git24.png) + +Now we have no readme.mdin our working directory. We could have used `git rm readme.md` and this would then be reflected in our git database. Let's also delete from here to simiulate it being removed completely. + +![](Images/Day39_Git25.png) + +Let's now commit this with a message and prove that we no longer have anything in our working directory or staging area. + +![](Images/Day39_Git26.png) + +Mistakes were made and we now need this file back! + +We could use the `git undo` command which will undo the last commit, but what if it was a while back? We can use our `git log` command to find our commits and then we find that our file is in the last commit but we don't all of those commits to be undone so we can then use this command `git restore --source=HEAD~1 README.md` to specifically find the file and restore it from our snapshot. + +You can see using this process we now have the file back in our working directory. + +![](Images/Day39_Git27.png) + +We now have a new untracked file and we can use our commands previously mentioned to track, stage and commit our files and changes. + +### Rebase vs Merge + +This seems to be the biggest headache when it comes to Git and when to use rebase vs using merge on your git repositories. + +The first thing to know is that both `git rebase` and `git merge` solve the same problem. Both are to integrate changes from one brance into another branch. However they do this in different ways. + +Let's start with a new feature in a new dedicated branch. The Main branch continues on with new commits. + +![](Images/Day39_Git28.png) + +The easy option here is to use `git merge feature main` which will merge the main branch into the feature branch. + +![](Images/Day39_Git29.png) + +Merging is easy because it is non-destructive. The existing branches are not changed in any way. However this also means that the feature branch will have an irrellevant merge commit every time you need to incorporate upstream changes. If main is very busy or active this will or can pollute the feature branch history. + +As an alternate option we can rebase the feature branch onto the main branch using + +``` +git checkout feature +git rebase main +``` +This moves the feature branch (the entire feature branch) effectively incorporating all of the new commits in main. But, instead of using a merge commit, rebasing re-writes the project history by creating brand new commits for each commit in the original branch. + +![](Images/Day39_Git30.png) + +The biggest benefit of rebasing is a much cleaner project history. It also eliminates unnecessary merge commits. and as you compare the last two images, you can follow arguably a much cleaner linear project history. + +Although it's still not a forgone conclusion, because choosing the cleaner history also comes with tradeoffs, If you do not follow the [The Golden rule of rebasing](https://www.atlassian.com/git/tutorials/merging-vs-rebasing#the-golden-rule-of-rebasing) re-writing project history can be potentially catastrophic for your collaboration workflow. And, less importantly, rebasing loses the context provided by a merge commit—you can’t see when upstream changes were incorporated into the feature. + +## Resources + +- [What is Version Control?](https://www.youtube.com/watch?v=Yc8sCSeMhi4) +- [Types of Version Control System](https://www.youtube.com/watch?v=kr62e_n6QuQ) +- [Git Tutorial for Beginners](https://www.youtube.com/watch?v=8JJ101D3knE&t=52s) +- [Git for Professionals Tutorial](https://www.youtube.com/watch?v=Uszj_k0DGsg) +- [Git and GitHub for Beginners - Crash Course](https://www.youtube.com/watch?v=RGOj5yH7evk&t=8s) +- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) +- [Git cheatsheet](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet) +- [Exploring the Git command line – A getting started guide](https://veducate.co.uk/exploring-the-git-command-line/) + + +See you on [Day40](day40.md) diff --git a/zh_tw/Days/day40.md b/zh_tw/Days/day40.md new file mode 100644 index 000000000..c44a62be5 --- /dev/null +++ b/zh_tw/Days/day40.md @@ -0,0 +1,210 @@ +--- +title: '#90DaysOfDevOps - Social Network for code - Day 40' +published: false +description: 90DaysOfDevOps - Social Network for code +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049044 +--- +## Social Network for code +Exploring GitHub | GitLab | BitBucket + +Today I want to cover off some of the git based services that we have likely all heard of and expect we also use on a daily basis. + +We will then use some of our prior session knowledge to move copies of our data to each of the main services. + +I called this section "Social Network for Code" let me explain why? + +### GitHub + +Most common at least for me is GitHub, GitHub is a web based hosting service for git. It is most commonly used by software developers to store their code in. Source Code Management with the git version control features as well as a lot of additional features. It allows for teams or open contributors to easily communicate and provides a social aspect to coding. (hence the social networking title) Since 2018 GitHub is part of Microsoft. + +GitHub has been around for quite some time and was founded in 2007/2008. With Over 40 million users on the platform today. + +GitHub Main Features + +- Code Repository +- Pull Requests +- Project Management toolset - Issues +- CI / CD Pipeline - GitHub Actions + +In terms of pricing GitHub have various different levels of pricing for their users. More can be found on [Pricing](https://github.com/pricing) + +For the purpose of this we will cover the free tier. + +I am going to be using my already created GitHub account during this walkthrough, if you do not have an account then on the opening GitHub page there is a sign up option and some easy steps to get set up. + +### GitHub opening page + +When you first login to your GitHub account you get a page containing a lot of widgets giving you options of where and what you would like to see or do. First up we have the "All Activity" this is going to give you a look into what is happening with your repositories or activity in general associated to your organisation or account. + +![](Images/Day40_Git1.png) + +Next we have our Code Repositories, either our own or repositories that we have interacted with recently. We can also quickly create new repositories or search repositories. + +![](Images/Day40_Git2.png) + +We then have our recent activity, these for me are issues and pull requests that I have created or contributed to recently. + +![](Images/Day40_Git3.png) + +Over on the right side of the page we have some referrals for repositories that we might be interested in, most likely based on your recent activity or own projects. + +![](Images/Day40_Git4.png) + +To be honest I am very rarely on my home page that we just saw and described, although I now see that the feed could be really useful to help interacting with the community a little better on certain projects. + +Next up if we want to head into our GitHub Profile we can navigate to the top right corner and on your image there is a drop down which allows you to navigate through your account. From here to access your Profile select "Your Profile" + +![](Images/Day40_Git5.png) + +Next, your profile page will appear, by default unless you change your configuration you are not going to see what I have, I have added some functionality that shows my recent blog posts over on [vZilla](https://vzilla.co.uk) and then also my latest videos on my [YouTube](https://m.youtube.com/c/MichaelCade1) Channel. + +Personally you are not going to be spending much time looking at your own profile, but this is a good profile page to share around your network so they can see the cool projects you are working on. + +![](Images/Day40_Git6.png) + +We can then drill down into the building block of GitHub, the repositories. Here you are going to see your own repositories and if you have private repositories they are also going to be shown in this long list. + +![](Images/Day40_Git7.png) + +As the repository is so important to GitHub let me choose a pretty busy one of late and run through some of the core functionality that we can use here on top of everything I am already using when it comes to editing our "code" in git on my local system. + +First of all from the previous window I have selected the 90DaysOfDevOps repository and we get to see this view. You can see from this view we have a lot of information, we have our main code structure in the middle showing our files and folders that are stored in our repository. We have our readme.mdbeing displayed down at the bottom. Over to the right of the page we have an about section where the repository has a description and purpose. Then we have lot of information underneath this showing how many people have starred the project, forked, and watching. + +![](Images/Day40_Git8.png) + +If we scroll down a little further you will also see that we have Releases, these are from the golang part of the challenge. We do not have any packages in our project, we have our contributers listed here. (Thank you community for assisting in my spelling and fact checking) We then have languages used again these are from different sections in the challenge. + +![](Images/Day40_Git9.png) + +A the top of the page you are going to see a list of tabs. These may vary and these can be modified to only show the ones you require. You will see here that I am not using all of these and I should remove them to make sure my whole repository is tidy. + +First up we had the code tab which we just discussed but these tabs are always available when navigating through a repository which is super useful so we can jump between sections quickly and easily. Next we have the issues tab. + +Issues let you track your work on GitHub, where development happens. In this specific repository you can see I have some issues focused on adding diagrams or typos but also we have an issue stating a need or requirement for a Chinese version of the repository. + +If this was a code repository then this is a great place to raise concerns or issues with the maintainers, but remember be mindful and detailed about what you are reporting, give as much detail as possible. + +![](Images/Day40_Git10.png) + +The next tab is Pull Requests, Pull requests let you tell others about changes you've pushed to a branch in a repository. This is where someone may have forked your repository, made changes such as bug fixes or feature enhancements or just typos a lot of the case in this repository. + +We will cover forking later on. + +![](Images/Day40_Git11.png) + +I believe the next tab is quite new? But I thought for a project like #90DaysOfDevOps this could really help guide the content journey but also help the community as they walk through their own learning journey. I have created some discussion groups for each section of the challenge so people can jump in and discuss. + +![](Images/Day40_Git12.png) + +The Actions tab is going to enable you to build, test and deploy code and a lot more right from within GitHub. GitHub Actions will be something we cover in the CI/CD section of the challenge but this is where we can set some configuration here to automate steps for us. + +On my main GitHub Profile I am using GitHub Actions to fetch the latest blog posts and YouTube videos to keep things up to date on that home screen. + +![](Images/Day40_Git13.png) + +I mentioned above about how GitHub is not just a source code repository but it is also a project management tool, The Project tab enables us to build out project tables kanban type boards so that we can link issues and PRs to better collaborate on the project and have a visibility of those tasks. + +![](Images/Day40_Git14.png) + +I know that issues to me seems like a good place to log feature requests and they are but the wiki page allows for a comprehensive roadmap for the project to be outlined with the current status and in general better document your project be it troubleshooting or how-to type content. + +![](Images/Day40_Git15.png) + +Not so applicable to this project but the Security tab is really there to make sure that contributers know how to deal with certain tasks, we can define a policy here but also code scanning add-ons to make sure your code for example does not contain secret environment variables. + +![](Images/Day40_Git16.png) + +For me the insights tab is great, it provides so much information about the repository from how much activity has been going on down to commits and issues, but it also reports on traffic to the repository. You can see a list on the left side that allows you to go into great detail about metrics on the repository. + +![](Images/Day40_Git17.png) + +Finally we have the Settings tab, this is where we can get into the details of how we run our repository, I am currently the only maintainer of the repository but we could share this responsibility here. We can define integrations and other such tasks here. + +![](Images/Day40_Git18.png) + +This was a super quick overview of GitHub, I think there are some other areas that I might have mentioned that need explaining in a little more detail. As mentioned GitHub houses millions of repositories mostly these are holding source code and these can be public or privately accessible. + +### Forking + +I am going to get more into Open-Source in the session tomorrow but a big part of any code repository is the ability to collaborate with the community. Let's think of the scenario I want a copy of a repository because I want to make some changes to it, maybe I want to fix a bug or maybe I want to change something to use it for a use case that I have that was maybe not the intended use case for the original maintainer of the code. This is what we would call forking a repository. A fork is a copy of a repository. Forking a repository allows you to freely experiment with changes without affecting the original project. + +Let me head back to the opening page after login and see one of those suggested repositories. + +![](Images/Day40_Git19.png) + +If we click on that repository we are going to get the same look as we have just walked through on the 90DaysOfDevOps repository. + +![](Images/Day40_Git20.png) + +If we notice below we have 3 options, we have watch, fork and star. + +- Watch - Updates when things happen to the repository. +- Fork - copy of a repository. +- Star - "I think your project is cool" + +![](Images/Day40_Git21.png) + +Given our scenario of wanting a copy of this repository to work on we are going to hit the fork option. If you are a member of multiple organisations then you will have to choose where the fork will take place, I am going to choose my profile. + +![](Images/Day40_Git22.png) + +Now we have our own copy of the repository that we can freely work on and change as we see fit. This would be the start of the pull request process that we mentioned briefly before but we will cover in more detail tomorrow. + +![](Images/Day40_Git23.png) + +Ok I hear you say, but how do I make changes to this repository and code if its on a website, well you can go through and edit on the website but its not going to be the same as using your favourite IDE on your local system with your favourite colour theme. In order for us to get a copy of this repository on our local machine we will perform a clone of the repository. This will allow us to work on things locally and then push our changes back into our forked copy of the repository. + +We have several options when it comes to getting a copy of this code as you can see below. + +There is a local version available of GitHub Desktop which gives you a visual desktop application to track changes and push and pull changes between local and github. + +For the purpose of this little demo I am going to use the HTTPS url we see on there. + +![](Images/Day40_Git24.png) + +Now on our local machine, I am going to navigate to a directory I am happy to download this repository to and then run `git clone url` + +![](Images/Day40_Git25.png) + +Now we could take to VScode to really make some changes to this. + +![](Images/Day40_Git26.png) + +Let's now make some changes, I want to make a change to all those links and replace that with something else. + +![](Images/Day40_Git27.png) + +Now if we check back on GitHub and we find our readme.mdin that repository, you should be able to see a few changes that I made to the file. + +![](Images/Day40_Git28.png) + +At this stage this might be complete and we might be happy with our change as we are the only people going to use our new change but maybe it was a bug change and if that is the case then we will want to contribute via a Pull Request to notify the original repository maintainers of our change and see if they accept our changes. + +We can do this by using the contribute button highlighted below. I will cover more on this tomorrow when we look into Open-Source workflows. + +![](Images/Day40_Git29.png) + +I have spent a long time looking through GitHub and I hear some of you cry but what about other options! + +Well there are and I am going to find some resources that cover the basics for some of those as well. You are going to come across GitLab and BitBucket amongst others in your travels and whilst they are git based services they have their differences. + +You will also come across hosted options. Most commonly here I have seen GitLab as a hosted version vs GitHub Enterprise (Don't believe there is a free hosted GitHub?) + + +## Resources + +- [Learn GitLab in 3 Hours | GitLab Complete Tutorial For Beginners](https://www.youtube.com/watch?v=8aV5AxJrHDg) +- [BitBucket Tutorials Playlist](https://www.youtube.com/watch?v=OMLh-5O6Ub8&list=PLaD4FvsFdarSyyGl3ooAm-ZyAllgw_AM5) +- [What is Version Control?](https://www.youtube.com/watch?v=Yc8sCSeMhi4) +- [Types of Version Control System](https://www.youtube.com/watch?v=kr62e_n6QuQ) +- [Git Tutorial for Beginners](https://www.youtube.com/watch?v=8JJ101D3knE&t=52s) +- [Git for Professionals Tutorial](https://www.youtube.com/watch?v=Uszj_k0DGsg) +- [Git and GitHub for Beginners - Crash Course](https://www.youtube.com/watch?v=RGOj5yH7evk&t=8s) +- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) +- [Git cheatsheet](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet) + + +See you on [Day 41](day41.md) diff --git a/zh_tw/Days/day41.md b/zh_tw/Days/day41.md new file mode 100644 index 000000000..a4aa161b7 --- /dev/null +++ b/zh_tw/Days/day41.md @@ -0,0 +1,127 @@ +--- +title: '#90DaysOfDevOps - The Open Source Workflow - Day 41' +published: false +description: 90DaysOfDevOps - The Open Source Workflow +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048806 +--- +## The Open Source Workflow + +Hopefully through the last 7 sections of Git we have a better understanding of what git is and then how a git based service such as GitHub integrates with git to provide a source code repository but also a way in which the wider community can collaborate on code and projects together. + +When we went through the GitHub fundamentals we went through the process of forking a random project and making a change to our local repository. Here we want to go one step further and contribute to an open source project. Remember that contributing doesn't need to be bug fixes, coding features but it could also be documentation. Every little helps and it also allows you to get hands on with some of the git functionality we have covered. + +## Fork a Project + +The first thing we have to do is find a project we can contribute to. I have recently been presenting on the [Kanister Project](https://github.com/kanisterio/kanister) and I would like to share my presentations that are now on YouTube to the main readme.mdfile in the project. + +First of all we need to fork the project. Let's run through that process. I am going to navigate to the link share above and fork the repository. + +![](Images/Day41_Git1.png) + +We now have our copy of the whole repository. + +![](Images/Day41_Git2.png) + +For reference on the Readme.mdfile the original Presenations listed are just these two so we need to fix this with our process. + +![](Images/Day41_Git3.png) + +## Clones to local machine + +Now we have our own fork we can bring that down to our local and we can then start making our edits to the files. Using the code button on our repo we can grab the URL and then use `git clone url` in a directory we wish to place the repository. + +![](Images/Day41_Git4.png) + +## Make our changes + +We have our project local so we can open VSCode or an IDE or text editor of your choice to add your modifications. + +![](Images/Day41_Git5.png) + +The readme.mdfile is written in markdown language and because I am modifying someone else's project I am going to follow the existing project formatting to add our content. + +![](Images/Day41_Git6.png) + +## Test your changes + +We must as a best practice test our changes, this makes total sense if this was a code change to an application you would want to ensure that the application still functions after code change, well we also must make sure that documentation is formatted and looks correct. + +In VScode we have the ability to add a lot of plugins one of these is the ability to preview markdown pages. + +![](Images/Day41_Git7.png) + +## Push changes back to our forked repository + +We do not have the authentication to push our changes directly back to the Kanister repository so we have to take this route. Now that I am happy with our changes we can run through some of those now well known git commands. + +![](Images/Day41_Git8.png) + +Now we go back into GitHub to check the changes once more and then contribute back to the master project. + +Looks good. + +![](Images/Day41_Git9.png) + +Now we can go back to the top of our forked repository for Kanister and we can see that we are 1 commit ahead of the kanisterio:master branch. + +![](Images/Day41_Git10.png) + +Next we hit that contribute button highlighted above. We see the option to "Open Pull Request" + +![](Images/Day41_Git11.png) + +## Open a pull request + +There is quite a bit going on in this next image, top left you can now see we are in the original or the master repository. then you can see what we are comparing and that is the original master and our forked repository. We then have a create pull request button which we will come back to shortly. We have our single commit but if this was more changes you might have multiple commits here. then we have the changes we have made in the readme.mdfile. + +![](Images/Day41_Git12.png) + +We have reviewed the above changes and we are ready to create pull request hitting the green button. + +Then depending on how the maintainer of a project has set out their Pull Request functionality on their repository you may or may not have a template that gives you pointers on what the maintainer wants to see. + +This again where you want to make a meaningful description of what you have done, clear and concise but enough detail. You can see I have made a simple change overview and I have ticked documentation. + +![](Images/Day41_Git13.png) + +## Create pull request + +We are now ready to create our pull request. After hitting the "Create Pull Request" at the top of the page you will get a summary of your pull request. + +![](Images/Day41_Git14.png) + +Scrolling down you are likely to see some automation taking place, in this instance we require a review and some checks are taking place. We can see that Travis CI is in progress and a build has started and this will check our update, making sure that before anything is merged we are not breaking things with our additions. + +![](Images/Day41_Git15.png) + +Another thing to note here is that the red in the screen shot above, can look a little daunting and look as if you have made mistakes! Don't worry you have not broken anything, my biggest tip here is this process is there to help you and the maintainers of the project. If you have made a mistake at least from my experience the maintainer will contact and advise on what to do next. + +This pull request is now public for everyone to see [added Kanister presentation/resource #1237](https://github.com/kanisterio/kanister/pull/1237) + +I am going to publish this before the merge and pull request is accepted so maybe we can get a little prize for anyone that is still following along and is able to add a picture in of the successful PR? + +1. Fork this repository to your own GitHub account +2. Add your picture and possibly text +3. Push the changes to your forked repository +4. Create a PR that I will see and approve. +5. I will think of some sort of prize + +This then wraps up our look into Git and GitHub, next we are diving into containers which starts with a big picture look into how, why containers and also a look into virtualisation and how we got here. + +## Resources + +- [Learn GitLab in 3 Hours | GitLab Complete Tutorial For Beginners](https://www.youtube.com/watch?v=8aV5AxJrHDg) +- [BitBucket Tutorials Playlist](https://www.youtube.com/watch?v=OMLh-5O6Ub8&list=PLaD4FvsFdarSyyGl3ooAm-ZyAllgw_AM5) +- [What is Version Control?](https://www.youtube.com/watch?v=Yc8sCSeMhi4) +- [Types of Version Control System](https://www.youtube.com/watch?v=kr62e_n6QuQ) +- [Git Tutorial for Beginners](https://www.youtube.com/watch?v=8JJ101D3knE&t=52s) +- [Git for Professionals Tutorial](https://www.youtube.com/watch?v=Uszj_k0DGsg) +- [Git and GitHub for Beginners - Crash Course](https://www.youtube.com/watch?v=RGOj5yH7evk&t=8s) +- [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) +- [Git cheatsheet](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet) + + +See you on [Day 42](day42.md) diff --git a/zh_tw/Days/day42.md b/zh_tw/Days/day42.md new file mode 100644 index 000000000..caded9cae --- /dev/null +++ b/zh_tw/Days/day42.md @@ -0,0 +1,136 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: Containers - Day 42' +published: false +description: 90DaysOfDevOps - The Big Picture Containers +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048826 +--- +## The Big Picture: Containers + +We are now starting the next section and this section is going to be focused on containers in particular we are going to be looking into Docker getting into some of the key areas to understand more about Containers. + +I will also be trying to get some hands-on here to create the container that we can use during this section but also future sections later on in the challenge. + +As always this first post is going to be focused on the big picture of how we got here and what it all means. + +#History of platforms and application development +#do we want to talk about Virtualisation & Containerisation + +### Why another way to run applications? + +The first thing we have to take a look at is why do we need another way to run our software or applications? Well it is just that choice is great, we can run our applications in many different forms, we might see applications deployed on physical hardware with an operating system and a single application deployed there, we might see the virtual machine or cloud-based IaaS instances running our application which then integrate into a database again in a VM or as PaaS offering in the public cloud. Or we might see our applications running in containers. + +None of the above options is wrong or right, but they each have their reasons to exist and I also strongly believe that none of these is going away. I have seen a lot of content that walks into Containers vs Virtual Machines and there really should not be an argument as that is more like apples vs pears argument where they are both fruit (ways to run our applications) but they are not the same. + +I would also say that if you were starting and you were developing an application you should lean towards containers simply because we will get into some of these areas later, but it's about efficiency, speed and size. But that also comes with a price, if you have no idea about containers then it's going to be a learning curve to force yourself to understand the why and get into that mindset. If you have developed your applications a particular way or you are not in a greenfield environment then you might have more pain points to deal with before even considering containers. + +We have many different choices then when it comes to downloading a given piece of software, there are a variety of different operating systems that we might be using. And specific instructions for what we need to do to install our applications. + +![](Images/Day42_Containers1.png) + +More and more recently I am finding that the applications we might have once needed a full server OS, A VM, Physical or cloud instance are now releasing container-based versions of their software. I find this interesting as this opens the world of containers and then Kubernetes to everyone and not just a focus on application developers. + +![](Images/Day42_Containers2.png) + +As you can probably tell as I have said before, I am not going to advocate that the answer is containers, what's the question! But I would like to discuss how this is another option for us to be aware of when we deploy our applications. + +![](Images/Day42_Containers4.png) + +We have had container technology for a long time, so why now over the last say 10 years has this become popular, I would say even more popular in the last 5. We have had containers for decades. It comes down to the challenge containers or should I say images as well, to how we distribute our software, because if we just have container technology, then we still will have many of the same problems we've had with software management. + +If we think about Docker as a tool, the reason that it took off, is because of the ecosystem of images that are easy to find and use. Simple to get on your systems and get up and running. A major part of this is consistency across the entire space, of all these different challenges that we face with software. It doesn't matter if it's MongoDB or nodeJS, the process to get either of those up and running will be the same. The process to stop either of those is the same. All of these issues will still exist, but the nice thing is, when we bring good container and image technology together, we now have a single set of tools to help us tackle all of these different problems. Some of those issues are listed below: + +- We first have to find software on the internet. +- We then have to download this software. +- Do we trust the source? +- Do we then need a license? Which License? +- Is it compatible with different platforms? +- What is the package? binary? Executable? Package manager? +- How do we configure the software? +- Dependencies? Did the overall download have us covered or do we need them as well? +- Dependencies of Dependencies? +- How do we start the application? +- How do we stop the application? +- Will it auto-restart? +- Start on boot? +- Resource conflicts? +- Conflicting libraries? +- Port Conflicts +- Security for the software? +- Software updates? +- How can I remove the software? + +We can split the above into 3 areas of the complexity of the software that containers and images do help with these. + +| Distribution | Installation | Operation | +| ------------ | ------------ | ----------------- | +| Find | Install | Start | +| Download | Configuration| Security | +| License | Uninstall | Ports | +| Package | Dependencies | Resource Conflicts | +| Trust | Platform | Auto-Restart | +| Find | Libraries | Updates | + +Containers and images are going to help us remove some of these challenges that we have with possibly other software and applications. + +At a high level we could move installation and operation into the same list, Images are going to help us from a distribution point of view and containers help with the installation and operations. + +Ok, probably sounds great and exciting but we still need to understand what is a container and now I have mentioned images so let's cover those areas next. + +Another thing you might have seen a lot when we talk about Containers for software development is the analogy used alongside shipping containers, shipping containers are used to ship various goods across the seas using large vessels. + +![](Images/Day42_Containers5.png) + +What does this have to do with our topic of containers? Think about the code that software developers write, how can we ship that particular code from one machine to another machine? + +If we think about what we touched on before about software distribution, installation and operations but now we start to build this out into an environment visual. We have hardware and an operating system where you will run multiple applications. For example, nodejs has certain dependencies and needs certain libraries. If you then want to install MySQL then it needs its required libraries and dependencies. Each software application will have its library and dependency. We might be massively lucky and not have any conflicts between any of our applications where specific libraries and dependencies are clashing causing issues but the more applications the more chance or risk of conflicts. However, this is not about that one deployment when everything fixes your software applications are going to be updated and then we can also introduce these conflicts. + +![](Images/Day42_Containers6.png) + +Containers can help solve this problem. Containers help **build** your application, **ship** the application, **deploy** and **scale** these applications with ease independently. let's look at the architecture, you will have hardware and operating system then on top of it you will have a container engine like docker which we will cover later. The container engine software helps create containers that package the libraries and dependencies along with it so that you can move this container seamlessly from one machine to another machine without worrying about the libraries and dependencies since they come as a part of a package which is nothing but the container so you can have different containers this container can be moved across the systems without worrying about the underlying dependencies that the application +needs to run because everything the application needs to run is packaged as +a container that you can move. + +![](Images/Day42_Containers7.png) + +### The advantages of these containers + +- Containers help package all the dependencies within the container and +isolate it. + +- It is easy to manage the containers + +- The ability to move from one system to another. + +- Containers help package the software and you can easily ship it without any duplicate efforts + +- Containers are easily scalable. + +Using containers you can scale independent containers and use a load balancer +or a service which help split the traffic and you can scale the applications horizontally. Containers offer a lot of flexibility and ease how you manage your applications + +### What is a container? + +When we run applications on our computer, this could be the web browser or VScode that you are using to read this post. That application is running as a process or what is known as a process. On our laptops or systems, we tend to run multiple applications or as we said processes. When we open a new application or click on the application icon this is an application we would like to run, sometimes this application might be a service that we just want to run in the background, our operating system is full of services that are running in the background providing you with the user experience you get with your system. + +That application icon represents a link to an executable somewhere on your file system, the operating system then loads that executable into memory. Interestingly, that executable is sometimes referred to as an image when we're talking about a process. + +Containers are processes, A container is a standard unit of software that packages up code and all its dependencies so the application runs quickly and reliably from one computing environment to another. + +Containerised software will always run the same, regardless of the infrastructure. Containers isolate software from its environment and ensure that it works uniformly despite differences for instance between development and staging. + +I mentioned images in the last section when it comes to how and why containers and images combined made containers popular in our ecosystem. + +### What is an Image? + +A container image is a lightweight, standalone, executable package of software that includes everything needed to run an application: code, runtime, system tools, system libraries and settings. Container images become containers at runtime. + +## Resources + +- [TechWorld with Nana - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=3c-iBn73dDE) +- [Programming with Mosh - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=pTFZFxd4hOI) +- [Docker Tutorial for Beginners - What is Docker? Introduction to Containers](https://www.youtube.com/watch?v=17Bl31rlnRM&list=WL&index=128&t=61s) + +See you on [Day 43](day43.md) diff --git a/zh_tw/Days/day43.md b/zh_tw/Days/day43.md new file mode 100644 index 000000000..39801a2ae --- /dev/null +++ b/zh_tw/Days/day43.md @@ -0,0 +1,70 @@ +--- +title: '#90DaysOfDevOps - What is Docker & Getting installed - Day 43' +published: false +description: 90DaysOfDevOps - What is Docker & Getting installed +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048739 +--- +## What is Docker & Getting installed + +In the previous post I mentioned Docker at least once and that is because Docker is really innovative in the making containers popular even though they have been around for such a long time. + +We are going to be using and explaining docker here but we should also mention the [Open Container Initiative (OCI)](https://www.opencontainers.org/) which is an industry standards organization that encourages innovation while avoiding the danger of vendor lock-in. Thanks to the OCI, we have a choice when choosing a container toolchain, including Docker, [CRI-O](https://cri-o.io/), [Podman](http://podman.io/), [LXC](https://linuxcontainers.org/), and others. + +Docker is a software framework for building, running, and managing containers. The term "docker" may refer to either the tools (the commands and a daemon) or to the Dockerfile file format. + +We are going to be using Docker Personal here which is free (fir education and learning). This includes all the essentials that we need to cover to get a good foundation of knowledge of containers and tooling. + +It is probably worth breaking down some of the "docker" tools that we will be using and what they are used for. The term docker can be referring to the docker project overall, which is a platform for devs and admins to develop, ship and run applications. It might also be a reference to the docker daeemon process running on the host which manages images and containers also called Docker Engine. + +### Docker Engine + +Docker Engine is an open source containerization technology for building and containerizing your applications. Docker Engine acts as a client-server application with: + +- A server with a long-running daemon process dockerd. +- APIs which specify interfaces that programs can use to talk to and instruct the Docker daemon. +- A command line interface (CLI) client docker. + +The above was taken from the official Docker documentation and the specific [Docker Engine Overview](https://docs.docker.com/engine/) + +### Docker Desktop +We have a docker desktop for both Windows and macOS systems. An easy to install, lightweight docker development environment. A native OS application that leverages virtualisation capabilities on the host operating system. + +It’s the best solution if you want to build, debug, test, package, and ship Dockerized applications on Windows or macOS. + +On Windows we are able to also take advantage of WSL2 and Microsoft Hyper-V. We will cover some of the WSL2 benefits as we go through. + +Because of the integration with hypervisor capabilities on the host operating system docker provides the ability to run your containers with Linux Operating systems. + +### Docker Compose +Docker compose is a tool that allows you to run more complex apps over multiple containers. With the benefit of being able to use a single file and command to spin up your application. + +### Docker Hub +A centralised resource for working with Docker and its components. Most commonly known as a registry to host docker images. But there is a lot of additional services here which can be used in part with automation or integrated into GitHub as well as security scanning. + +### Dockerfile + +A dockerfile is a text file that contains commands you would normally execute manually in order to build a docker image. Docker can build images automatically by reading the instructions we have in our dockerfile. + +## Installing Docker Desktop + +The [docker documenation](https://docs.docker.com/engine/install/) is amazing and if you are only just diving in then you should take a look and have a read through. We will be using Docker Desktop on Windows with WSL2. I had already ran through the installation on my machine we are using here. + +![](Images/Day43_Containers1.png) + +Take note before you go ahead and install at the system requirements, [Install Docker Desktop on Windows](https://docs.docker.com/desktop/windows/install/) if you are using macOS including the M1 based CPU architecture you can also take a look at [Install Docker Desktop on macOS](https://docs.docker.com/desktop/mac/install/) + +I will run through the Docker Desktop installation for Windows on another Windows Machine and log the process down below. + + + +## Resources + +- [TechWorld with Nana - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=3c-iBn73dDE) +- [Programming with Mosh - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=pTFZFxd4hOI) +- [Docker Tutorial for Beginners - What is Docker? Introduction to Containers](https://www.youtube.com/watch?v=17Bl31rlnRM&list=WL&index=128&t=61s) +- [WSL 2 with Docker getting started](https://www.youtube.com/watch?v=5RQbdMn04Oc) + +See you on [Day 44](day44.md) diff --git a/zh_tw/Days/day44.md b/zh_tw/Days/day44.md new file mode 100644 index 000000000..607a1720b --- /dev/null +++ b/zh_tw/Days/day44.md @@ -0,0 +1,141 @@ +--- +title: '#90DaysOfDevOps - Docker Images & Hands-On with Docker Desktop - Day 44' +published: false +description: 90DaysOfDevOps - Docker Images & Hands-On with Docker Desktop +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048708 +--- +## Docker Images & Hands-On with Docker Desktop + +We now have Docker Desktop installed on our system. (If you are running Linux then you still have options but no GUI but docker obviously does work on Linux.)[Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/) (Other distributions also available.) + +In this post we are going to get started with deploying some images into our environment. A recap on what a Docker Image is - A Docker image is a file used to execute code in a Docker container. Docker images act as a set of instructions to build a Docker container, like a template. Docker images also act as the starting point when using Docker. + +Now is a good time to go and create your account on [DockerHub](https://hub.docker.com/) + +![](Images/Day44_Containers1.png) + +DockerHub is a centralised resource for working with Docker and its components. Most commonly known as a registry to host docker images. But there is a lot of additional services here which can be used in part with automation or integrated into GitHub as well as security scanning. + +If you scroll down once logged in you are going to see a list of container images, You might see database images for mySQL, hello-world etc etc. Think of these as great baseline images or you might in fact just need a database image and you are best to use the official one which means you don't need to create your own. + +![](Images/Day44_Containers2.png) + +We can drill deeper into the view of available images and search across categories, operating systems and architectures. The one thing I highlight below is the Office Image, this should give you peace of mind of the origin of this container image. + +![](Images/Day44_Containers3.png) + +We can also search for a specific image, for example wordpress might be a good base image that we want we can do that in the top and find all container images related to wordpress. Below notice that we also have verified publisher. + +- Official Image - Docker Official images are a curated set of Docker open source and "drop-in" solution repositories. + +- Verified Publisher - High-quality Docker content from verified publishers. These products are published and maintained directly by a commercial entity. + +![](Images/Day44_Containers4.png) + +### Exploring Docker Desktop + +We have Docker Desktop installed on our system and if open this I expect unless you had this already installed you will see something similar to the image below. As you can see we have no containers running and our docker engine is running. + +![](Images/Day44_Containers5.png) + +Because this was not a fresh install for me, I do have some images already downloaded and available on my system. You will likely see nothing in here. + +![](Images/Day44_Containers6.png) + +Under remote repositories this is where you will find any container images you have stored in your docker hub. You can see from the below I do not have any images. + +![](Images/Day44_Containers7.png) + +We can also clarify this on our dockerhub site and confirm that we have no repositories there. + +![](Images/Day44_Containers8.png) + +Next we have the Volumes tab, If you have containers that require persistence then this is where we can add these volumes on your local file system or a shared file system. + +![](Images/Day44_Containers9.png) + +At the time of writing there is also a Dev Environments tab, this is going to help you collaborate with your team instead of moving between different git branches. We won't be covering this. + +![](Images/Day44_Containers10.png) + +Going back to the first tab you can see that there is a command we can run which is a getting started container. Let's run `docker run -d -p 80:80 docker/getting-started` in our terminal. + +![](Images/Day44_Containers11.png) + +If we go and check our docker desktop window again, we are going to see that we have a running container. + +![](Images/Day44_Containers12.png) + +You might have noticed that I am using WSL2 and in order for you to be able to use that you will need to make sure this is enabled in the settings. + +![](Images/Day44_Containers13.png) + +If we now go and check our Images tab again, you should now see an in use image called docker/getting-started. + +![](Images/Day44_Containers14.png) + +Back to the Containers/Apps tab, click on your running container. You are going to see the logs by default and along the top you have some options to choose from, in our case I am pretty confident that this is going to be a web page running in this container so we are going to choose the open in browser. + +![](Images/Day44_Containers15.png) + +When we hit that button above sure enough a web page should open hitting your localhost and display something similar to below. + +This container also has some more detail on what are containers and images. + +![](Images/Day44_Containers16.png) + +We have now ran our first container. Nothing too scary just yet. What about if we wanted to pull one of the container images down from DockerHub? Maybe there is a `hello world` docker container we could use. + +I went ahead and stopped the getting started container not that it's taking up any mass amount of resources but for tidyness as we walk through some more steps. + +Back in our terminal lets go ahead and run `docker run hello-world` and see what happens. + +You can see we did not have the image locally so we pulled that down and then we got a message that is written into the container image with some information on what it did to get up and running and some links to reference points. + +![](Images/Day44_Containers17.png) + +However, if we go and look in Docker Desktop now we have no running containers but we do have an exited container that used the hello-world message, meaning it came up, it delivered the message and then it terminated. + +![](Images/Day44_Containers18.png) + +And for the last time, let's just go and check the images tab and see that we have a new hello-world image locally on our system, meaning that if we run the `docker run hello-world` command again in our terminal we would not have to pull anything unless a version changes. + +![](Images/Day44_Containers19.png) + +In the message from the hello-world container it set down a challenge of running something a little more ambitious. + +Challenge Accepted! + +![](Images/Day44_Containers20.png) + +In running `docker run -it ubuntu bash` in our terminal we are going to run a containerised version of Ubuntu well not a full copy of the Operating system. You can find out more about this particular image on [DockerHub](https://hub.docker.com/_/ubuntu) + +You can see below when we run the command we now have an interactive prompt (`-it`) and we have bash shell into our container. + +![](Images/Day44_Containers21.png) + +We have a bash shell but we don't have much more which is why this container image is less than 30mb. + +![](Images/Day44_Containers22.png) + +But we can still use this image and we can still install software using our apt package manager, we can update our container image and upgrade also. + +![](Images/Day44_Containers23.png) + +Or maybe we want to install some software into our container, I have chosen a really bad example here as pinta is an image editor and its over 200mb but hopefully you get where I am going with this. This would increase the size of our container considerably but still we are going to be in the mb and not into the gb. + +![](Images/Day44_Containers24.png) + +I wanted that to hopefully give you an overview of Docker Desktop and the not so scary world of containers when you break it down with simple use cases, we do need to cover some networking, security and other options we have vs just downloading container images and using them like this. By the end of the section we want to have made something and uploaded to our DockerHub repository and be able to deploy it. + +## Resources + +- [TechWorld with Nana - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=3c-iBn73dDE) +- [Programming with Mosh - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=pTFZFxd4hOI) +- [Docker Tutorial for Beginners - What is Docker? Introduction to Containers](https://www.youtube.com/watch?v=17Bl31rlnRM&list=WL&index=128&t=61s) +- [WSL 2 with Docker getting started](https://www.youtube.com/watch?v=5RQbdMn04Oc) + +See you on [Day 45](day45.md) diff --git a/zh_tw/Days/day45.md b/zh_tw/Days/day45.md new file mode 100644 index 000000000..428e6648f --- /dev/null +++ b/zh_tw/Days/day45.md @@ -0,0 +1,120 @@ +--- +title: '#90DaysOfDevOps - The anatomy of a Docker Image - Day 45' +published: false +description: 90DaysOfDevOps - The anatomy of a Docker Image +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048777 +--- +## The anatomy of a Docker Image + +In the last session we covered some basics of how we can use Docker Desktop combined with DockerHub to deploy and run some verified images. A recap on what an image is, you won't forget things if I keep mentioning. + +A Docker image is a read-only template that contains a set of instructions for creating a container that can run on the Docker platform. It provides a convenient way to package up applications and preconfigured server environments, which you can use for your own private use or share publicly with other Docker users. Docker images are also the starting point for anyone using Docker for the first time. + +What happens if we want to create our own Docker image? For us to do this we would create a Dockerfile. You saw how we could take that Ubuntu container image and we could add our software and we would have our container image with the software that we wanted and everything is good, however if that container is shut down or thrown away then all those software updates and installations go away there is no repeatable version of what we had done. So that is great for showing off the capabilities but it doesn't help with the transport of images across multiple environments with the same set of software installed each time the container is ran. + +### What is a Dockerfile + +A dockerfile is a text file that contains commands you would normally execute manually in order to build a docker image. Docker can build images automatically by reading the instructions we have in our dockerfile. + +Each of the files that make up a docker image is known as a layer. these layers form a series of images, built on top of each other in stages. Each layer is dependant on the layer immediatly below it. The order of your layers is key to the effciency of the lifecycle management of your docker images. + +We should organise our layers that change most often as high in the stack as possible, this is because when you make changes to a layer in your image, Docker not only rebuilds that particular layer but all layers built from it. Therefore a change to a layer at the top involves the least amount of work to rebuild the entire image. + +Each time docker launches a container from an image (like we ran yesterday) it adds a writeable layer, known as the container layer. This stores all changes to the container throughout its runtime. This layer is the only difference between a live operational container and the source image itself. Any number of like for like containers can share access to the same underlying image while maintaining their own individual state. + +Back to the example we used yesterday with the Ubuntu image. We could run that same command multiple times and on the first container we could go and install pinta and on the second we could install figlet two different applications, different purpose, different size etc etc. Each container that we deployed share the same image but not the same state and then that state is then gone when we remove the container. + +![](Images/Day45_Containers1.png) + +Following the example above with the Ubuntu image, but also many other ready built container images available on DockerHub and other third party repositories. These images are generally known as the parent image. It is the foundations upon which all other layers are build and provides the basic building blocks for our container environments. + +Together with a set of individual layer files, a Docker image also includes an additional file known as a manifest. This is essentially a description of the image in JSON format and comprises information such as image tags, a digital signature, and details on how to configure the container for different types of host platforms. + +![](Images/Day45_Containers2.png) + +### How to create a docker image + + There are two ways we can create a docker image. We can do it a little on the fly with the process that we started yesterday, we pick our base image we spin up that container, we install all of the software and depenancies that we wish to have on our container. + + Then we can use the `docker commit container name` then we have a local copy of this image under docker images and in our docker desktop images tab. + + Super simple, I would not recommend this method unless you want to understand the process, it is going to be very difficult to manage lifecycle management this way and a lot of manual configuration/reconfiguration. But it is the quickest and most simple ways to build a docker image. Great for testing, troubleshooting, validating dependencies etc. + +The way we intend to build our image is through a dockerfile. Which gives us a clean, compact and repeatable way to create our images. Much easier lifecycle management and easy integration into Continous integration and Continous delivery procesess. But as you might gathered it is a little more difficult than the first mentioned process. + +Using the dockerfile method is much more in tune with real-world, enterprise grade container deployments. + +A dockerfile is a three-step process whereby you create the dockerfile and add the commands you need to assemble the image. + +The following table shows some of the dockerfile statements we will be using or that you will most likely be using. + +| Command | Purpose | +| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| FROM | To specify the parent image. | +| WORKDIR | To set the working directory for any commands that follow in the Dockerfile. | +| RUN | To install any applications and packages required for your container. | +| COPY | To copy over files or directories from a specific location. | +| ADD | As COPY, but also able to handle remote URLs and unpack compressed files. | +| ENTRYPOINT | Command that will always be executed when the container starts. If not specified, the default is /bin/sh -c | +| .md | Arguments passed to the entrypoint. If ENTRYPOINT is not set (defaults to /bin/sh -c), the .mdwill be the commands the container executes. | +| EXPOSE | To define which port through which to access your container application. | +| LABEL | To add metadata to the image. | + + +Now we have the detail on how to build our first dockerfile we can create a working directory and create our dockerfile. I have created a working directory within this repository where you can see the files and folders I have to walk through. [Containers](Days/Containers) + +In this directory I am going to create a .dockerignore file similar to the .gitignore we used in the last section. This file will list any files that would otherwise be created during the Docker build process, which you want to exclude from the final build. + +Remember everything about containers is about being compact, as fast as possible with no bloat. + +I want to create a very simple Dockerfile with the below layout also can be found in the folder linked above. + +``` +# 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/* +``` + +Navigate to this directory in your terminal, and then run `docker build -t 90daysofdevops:0.1 .` we are using the `-t` and then setting an image name and tag. + +![](Images/Day45_Containers3.png) + +Now we have created our image we can then go and run our image using Docker Desktop or we could use the docker command line. I have used Docker Desktop I have fired up a container and you can see that we have `curl` available to us in the cli of the container. + +![](Images/Day45_Containers4.png) + +Whilst in Docker Desktop there is also the ability to leverage the UI to do some more tasks with this new image. + +![](Images/Day45_Containers5.png) + +We can inspect our image, in doing so you see very much the dockerfile and the lines of code that we wanted to run within our container. + +![](Images/Day45_Containers6.png) + +We have a pull option, now this would fail for us because this image is not hosted anywhere so we would get that as an error. However we do have a Push to hub which would enable us to push our image to DockerHub. + +If you are using the same `docker build` we ran earlier then this would not work either, you would need the build command to be `docker build -t {{username}}/{{imagename}}:{{version}}` + +![](Images/Day45_Containers7.png) + +Then if we go and take a look in our DockerHub repository you can see that we just pushed a new image. Now in Docker Desktop we would be able to use that pull tab. + +![](Images/Day45_Containers8.png) + + +## Resources + +- [TechWorld with Nana - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=3c-iBn73dDE) +- [Programming with Mosh - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=pTFZFxd4hOI) +- [Docker Tutorial for Beginners - What is Docker? Introduction to Containers](https://www.youtube.com/watch?v=17Bl31rlnRM&list=WL&index=128&t=61s) +- [WSL 2 with Docker getting started](https://www.youtube.com/watch?v=5RQbdMn04Oc) +- [Blog on gettng started building a docker image](https://stackify.com/docker-build-a-beginners-guide-to-building-docker-images/) +- [Docker documentation for building an image](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/) + +See you on [Day 46](day46.md) diff --git a/zh_tw/Days/day46.md b/zh_tw/Days/day46.md new file mode 100644 index 000000000..00b5b5c53 --- /dev/null +++ b/zh_tw/Days/day46.md @@ -0,0 +1,181 @@ +--- +title: '#90DaysOfDevOps - Docker Compose - Day 46' +published: false +description: 90DaysOfDevOps - Docker Compose +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048740 +--- +## Docker Compose + +The ability to run one container could be great if you have a self contained image that has everything you need for your single use case, where things get interesting is when you are looking to build multiple applications between different container images. For example if I had a website front end but had a requirement for a backend database I could put everything in one container but better and more efficient would be to have its own container for the database. + +This is where Docker compose comes in which is a tool that allows you to run more complex apps over multiple containers. With the benefit of being able to use a single file and command to spin up your application. The example I am going to walkthrough in this post is from the [Docker QuickStart sample apps (Quickstart: Compose and WordPress)](https://docs.docker.com/samples/wordpress/). + +In this first example we are going to: + +- Use Docker compose to bring up WordPress and a separate MySQL instance. +- Use a YAML file which will be called `docker-compose.yml` +- Build the project +- Configure WordPress via a Browser +- Shutdown and Clean up + +### Install Docker Compose +As mentioned Docker Compose is a tool, If you are on macOS or Windows then compose is included in your Docker Desktop installation. However you might be wanting to run your containers on a Windows server host or Linux server and in which case you can install using these instructions [Install Docker Compose](https://docs.docker.com/compose/install/) + +To confirm we have `docker-compose` installed on our system we can open a terminal and simply type the above command. + +![](Images/Day46_Containers1.png) + +### Docker-Compose.yml (YAML) + +The next thing to talk about is the docker-compose.yml which you can find in the container folder of the repository. But more importantly we need to discuss YAML in general a little. + +YAML could almost have its own session as you are going to find it in so many different places. But for the most part + +"YAML is a human-friendly data serialization language for all programming languages." + +It is commonly used for configuration files and in some applications where data is being stored or transmitted. You have no doubt come across XML files that tend to offer that same configuration file. YAML provides a minimal syntax but is aimed at those same use cases. + +YAML Ain't Markup Language (YAML) is a serialisation language that has steadily increased in popularity over the last few years. The object serialisation abilities make it a viable replacement for languages like JSON. + +The YAML acronym was shorthand for Yet Another Markup Language. But the maintainers renamed it to YAML Ain't Markup Language to place more emphasis on its data-oriented features. + +Anyway, back to the docker-compose.yml file. This is a configuration file of what we want to do when it comes to multiple containers being deployed on our single system. + +Straight from the tuturial linked above you can see the contents of the file looks like this: + +``` +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: {} +``` + +We declare a version and then a large part of this docker-compose.yml file is made up of our services, we have a db service and a wordpress service. You can see each of those have an image defined wiht a version tag associated. We are now also introducing state into our configuration unlike our first walkthroughs, but now we are going to create volumes so we can store our databases there. + +We then have some environmental variables such as passwords and usernames. Obviously these files can get very complicated but the YAML configuration file simplifies what these look like overall. + +### Build the project + +Next up we can head back into our terminal and we can use some commands with our docker-compose tool. Navigate to your directory, where your docker-compose.yml file is located. + +From the terminal we can simply run `docker-compose up -d` this will start the process of pulling those images and standing up your multi container application. + +The `-d` in this command means detached mode, which means that the Run command is or will be in the background. + +![](Images/Day46_Containers2.png) + +If we now run the `docker ps` command, you can see we have 2 containers running, one being wordpress and the other being mySQL. + +![](Images/Day46_Containers3.png) + +Next we can validate that we have WordPress up and running by opening a browser and going to `http://localhost:8000` and you should see the wordpress set up page. + +![](Images/Day46_Containers4.png) + +We can run through the setup of WordPress, and then we can start building our website as we see fit in the console below. + +![](Images/Day46_Containers5.png) + +If we then open a new tab and navigate to that same address we did before `http://localhost:8000` we will now see a simple default theme with our site title "90DaysOfDevOps" and then a sample post. + +![](Images/Day46_Containers6.png) + +Before we make any changes, open Docker Desktop and navigate to the volumes tab and here you will see two volumes associated to our containers, one for wordpress and one for db. + +![](Images/Day46_Containers7.png) + +My Current theme for wordpress is "Twenty Twenty-Two" and I want to change this to "Twenty Twenty" Back in the dashboard we can make those changes. + +![](Images/Day46_Containers8.png) + +I am also going to add a new post to my site, and here below you see the latest version of our new site. + +![](Images/Day46_Containers9.png) + +### Clean Up or not + +If we were now to use the command `docker-compose down` this would bring down our containers. But will leave our volumes in place. + +![](Images/Day46_Containers10.png) + +We can just confirm in Docker Desktop that our volumes are still there though. + +![](Images/Day46_Containers11.png) + +If we then want to bring things back up then we can issue the `docker up -d` command from within the same directory and we have our application back up and running. + +![](Images/Day46_Containers12.png) + +We then navigate in our browser to that same address of `http://localhost:8000` and notice that our new post and our theme change is all still in place. + +![](Images/Day46_Containers13.png) + +If we want to get rid of the containers and those volumes then issueing the `docker-compose down --volumes` will also destroy the volumes. + +![](Images/Day46_Containers14.png) + +Now when we use `docker-compose up -d` again we will be starting again, however the images will still be local on our system so you won't need to re pull them from the DockerHub repository. + +I know that when I started diving into docker-compose and its capabilities I was then confused as to where this sits alongside or with Container Orchestration tools such as Kubernetes, well everything we have done here in this short demo is focused on one host we have wordpress and db running on the local desktop machine. We don't have multiple virtual machines or multiple physical machines, we also don't have the ability to easily scale up and down the requirements of our application. + +Our next section is going to cover Kubernetes but we have a few more days of Containers in general first. + +This is also a great resource for samples of docker compose applications with multiple integrations. [Awesome-Compose](https://github.com/docker/awesome-compose) + +In the above repository there is a great example which will deploy an Elasticsearch, Logstash, and Kibana (ELK) in single-node. + +I have uploaded the files to the [Containers folder](/Days/Containers/elasticsearch-logstash-kibana/) When you have this folder locally, navigate there and you can simply use `docker-compose up -d` + +![](Images/Day46_Containers15.png) + +We can then check we have those running containers with `docker ps` + +![](Images/Day46_Containers16.png) + +Now we can open a browser for each of containers: + +![](Images/Day46_Containers17.png) + +To remove everything we can use the `docker-compose down` command. + +## Resources + +- [TechWorld with Nana - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=3c-iBn73dDE) +- [Programming with Mosh - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=pTFZFxd4hOI) +- [Docker Tutorial for Beginners - What is Docker? Introduction to Containers](https://www.youtube.com/watch?v=17Bl31rlnRM&list=WL&index=128&t=61s) +- [WSL 2 with Docker getting started](https://www.youtube.com/watch?v=5RQbdMn04Oc) +- [Blog on gettng started building a docker image](https://stackify.com/docker-build-a-beginners-guide-to-building-docker-images/) +- [Docker documentation for building an image](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/) +- [YAML Tutorial: Everything You Need to Get Started in Minute](https://www.cloudbees.com/blog/yaml-tutorial-everything-you-need-get-started) + +See you on [Day 47](day47.md) diff --git a/zh_tw/Days/day47.md b/zh_tw/Days/day47.md new file mode 100644 index 000000000..140559f00 --- /dev/null +++ b/zh_tw/Days/day47.md @@ -0,0 +1,139 @@ +--- +title: '#90DaysOfDevOps - Docker Networking & Security - Day 47' +published: false +description: 90DaysOfDevOps - Docker Networking & Security +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049078 +--- +## Docker Networking & Security + +During this container session so far we have made things happen but we have not really looked at how things have worked behind the scenes either from a networking point of view but also we have not touched on security, that is the plan for this session. + +### Docker Networking Basics + +Open a terminal, and type the command `docker network` this is the main command for configuring and managing container networks. + +From the below you can see this is how we can use the command, and all of the sub commands available. We can create new networks, list existing, inspect and remove networks. + +![](Images/Day47_Containers1.png) + +Lets take a look at the existing networks we have since our installation, so the out of box Docker networking looks like using the `docker network list` command. + +Each network gets a unique ID and NAME. Each network is also associated with a single driver. Notice that the "bridge" network and the "host" network have the same name as their respective drivers. + +![](Images/Day47_Containers2.png) + +Next we can take a deeper look into our networks with the `docker network inspect` command. + +With me running `docker network inspect bridge` I can get all the configuration details of that specific network name. This includes name, ID, drivers, connected containers and as you can see quite a lot more. + +![](Images/Day47_Containers3.png) + +### Docker: Bridge Networking + +As you have seen above a standard installation of Docker Desktop gives us a pre-built network called `bridge` If you look back up to the `docker network list` command, you will see that the networked called bridge is associated with the `bridge` driver. Just because they have the same name doesn't they are the same thing. Connected but not the same thing. + +The output above also shows that the bridge network is scoped locally. This means that the network only exists on this Docker host. This is true of all networks using the bridge driver - the bridge driver provides single-host networking. + +All networks created with the bridge driver are based on a Linux bridge (a.k.a. a virtual switch). + +### Connect a Container + +By default the bridge network is assigned to new containers, meaning unless you specify a network all containers will be connected to the bridge network. + +Lets create a new container with the command `docker run -dt ubuntu sleep infinity` + +The sleep command above is just going to keep the container running in the background so we can mess around with it. + +![](Images/Day47_Containers4.png) + +If we then check our bridge network with `docker network inspect bridge` you will see that we have a container matching what we have just deployed because we did not specify a network. + +![](Images/Day47_Containers5.png) + +We can also dive into the container using `docker exec -it 3a99af449ca2 bash` you will have to use `docker ps` to get your container ID. + +From here our image doesn't have anything to ping so we need to run the following command.`apt-get update && apt-get install -y iputils-ping` then ping an external interfacing address. `ping -c5 www.90daysofdevops.com` + +![](Images/Day47_Containers6.png) + +To clear this up we can run `docker stop 3a99af449ca2` again use `docker ps` to find your container ID but this will remove our container. + +### Configure NAT for external connectivity + +In this step we'll start a new NGINX container and map port 8080 on the Docker host to port 80 inside of the container. This means that traffic that hits the Docker host on port 8080 will be passed on to port 80 inside the container. + +Start a new container based off the official NGINX image by running `docker run --name web1 -d -p 8080:80 nginx` + +![](Images/Day47_Containers7.png) + + +Review the container status and port mappings by running `docker ps` + +![](Images/Day47_Containers8.png) + +The top line shows the new web1 container running NGINX. Take note of the command the container is running as well as the port mapping - `0.0.0.0:8080->80/tcp` maps port 8080 on all host interfaces to port 80 inside the web1 container. This port mapping is what effectively makes the containers web service accessible from external sources (via the Docker hosts IP address on port 8080). + +Now we need our IP address for our actual host, we can do this by going into our WSL terminal and using the `ip addr` command. + +![](Images/Day47_Containers9.png) + +Then we can take this IP and open a browser and head to `http://172.25.218.154:8080/` Your IP might be different. This confirms that NGINX is accessible. + +![](Images/Day47_Containers10.png) + +I have taken these instructions from this site from way back in 2017 DockerCon but they are still relevant today. However the rest of the walkthrough goes into Docker Swarm and I am not going to be looking into that here. [Docker Networking - DockerCon 2017](https://github.com/docker/labs/tree/master/dockercon-us-2017/docker-networking) + +### Securing your containers + +Containers provide a secure environment for your workloads vs a full server configuration. They offer the ability to break up your applications into much smaller, loosly coupled components each isolated from one another which helps resude the attack surface overall. + +But they are not immune from hackers that are looking to exploit systems. We still need to understand the security pitfalls of the technology and maintain best practices. + +### Move away from root permission + +All of the containers we have deployed have been using the root permission to the process within your containers. Which means they have full administrative access to your container and host environments. Now for the purposes of walking through we knew these systems were not going to be up and running for long. But you saw how easy it was to get up and running. + +We can add a few steps to our process to enable non root users to be our preferred best practice. When creating our dockerfile we can create user accounts. You can find this example also in the containers folder in the repository. + +``` +# Use the official Ubuntu 18.04 as base +FROM ubuntu:18.04 +RUN apt-get update && apt-get upgrade -y +RUN groupadd -g 1000 basicuser && useradd -r -u 1000 -g basicuser basicuser +USER basicuser +``` + +We can also use `docker run --user 1009 ubuntu` the Docker run command overrides any user specified in your Dockerfile. Therefore, in the following example, your container will always run with the least privilege—provided user identifier 1009 also has the lowest permission level. + +However, this method doesn’t address the underlying security flaw of the image itself. Therefore it’s better to specify a non-root user in your Dockerfile so your containers always run securely. + +### Private Registry + +Another area we have used heavily is public registries in DockerHub, with a private registry of container images set up by your organisation means that you can host where you wish or there are managed services for this as well, but all in all this gives you complete control of the images available for you and your team. + +DockerHub is great to give you a baseline, but its only going to be providing you with a basic service where you have to put a lot of trust into the image publisher. + +### Lean & Clean + +Have mentioned this throughout, although not related to security. But the size of your container can also affect security in terms of attack surface if you have resources you do not use in your application then you do not need them in your container. + +This is also my major concern with pulling the `latest` images because that can bring a lot of bloat to your images as well. DockerHub does show the compressed size for each of the images in a repository. + +Checking `docker image` is a great command to see the size of your images. + +![](Images/Day47_Containers11.png) + +## Resources + +- [TechWorld with Nana - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=3c-iBn73dDE) +- [Programming with Mosh - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=pTFZFxd4hOI) +- [Docker Tutorial for Beginners - What is Docker? Introduction to Containers](https://www.youtube.com/watch?v=17Bl31rlnRM&list=WL&index=128&t=61s) +- [WSL 2 with Docker getting started](https://www.youtube.com/watch?v=5RQbdMn04Oc) +- [Blog on gettng started building a docker image](https://stackify.com/docker-build-a-beginners-guide-to-building-docker-images/) +- [Docker documentation for building an image](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/) +- [YAML Tutorial: Everything You Need to Get Started in Minute](https://www.cloudbees.com/blog/yaml-tutorial-everything-you-need-get-started) + +See you on [Day 48](day48.md) diff --git a/zh_tw/Days/day48.md b/zh_tw/Days/day48.md new file mode 100644 index 000000000..49207c17c --- /dev/null +++ b/zh_tw/Days/day48.md @@ -0,0 +1,119 @@ +--- +title: '#90DaysOfDevOps - Alternatives to Docker - Day 48' +published: false +description: 90DaysOfDevOps - Alternatives to Docker +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048807 +--- +## Alternatives to Docker + +I did say at the very beginning of this section that we were going to be using Docker, simply because resource wise there is so much and the community is very big, but also this was really where the indents to making containers popular really came from. I would encourage you to go and watch some of the history around Docker and how it came to be, I found it very useful. + +But as I have alluded to there are other alternatives to Docker. If we think about what Docker is and what we have covered. It is a platform for developing, testing, deploying, and managing applications. + +I want to highlight a few alternatives to Docker that you might or will in the future see out in the wild. + +### Podman + +What is Podman? Podman is a daemonless container engine for developing, managing, and running OCI Containers on your Linux System. Containers can either be run as root or in rootless mode. + +I am going to be looking at this from a Windows point of view but know that like Docker there is no requirement for virtualisation there as it will use the underlying OS which is cannot do in the Windows world. + +Podman can be ran under WSL2 although not as sleak as the experience with Docker Desktop. There is also a Windows remote client where you can connect to a Linux VM where your containers will run. + +My Ubuntu on WSL2 is the 20.04 release. Following the next steps will enable you to install Podman on your WSL instance. + +``` +echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_20.04/ /" | +sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list +``` + +Add the GPG Key + +``` +curl -L "https://download.opensuse.org/repositories/devel:/kubic:\ +/libcontainers:/stable/xUbuntu_20.04/Release.key" | sudo apt-key add - +``` + +Run a system update and upgrade with the `sudo apt-get update && sudo apt-get upgrade` command. Finally we can install podman using `sudo apt install podman` + +We can now use a lot of the same commands we have been using for docker, note though that we do not have that nice docker desktop UI. You can see below I used `podman images` and I have nothing after install then I used `podman pull ubuntu` to pull down the ubuntu container image. + +![](Images/Day48_Containers1.png) + +We can then run our Ubuntu image using `podman run -dit ubuntu` and `podman ps` to see our running image. + +![](Images/Day48_Containers2.png) + +To then get into that container we can run `podman attach dazzling_darwin` your container name will most likely be different. + +![](Images/Day48_Containers3.png) + +If you are moving from docker to podman it is also common to change your config file to have `alias docker=podman` that way any command you run with docker will in fact use podman. + +### LXC + +LXC is a containerisation engine that enables users again to create multiple isolateed Linux container environments. Unlike Docker LXC acts as a hypervisor for create multiple Linux machines with separeate system files, networking features. Was around before Docker and then made a short comeback due to Docker shortcomings. + +LXC is as lightweight though as docker, and easily deployed. + +### Containerd + +A standalone container runtime. Containerd brings simplicity and robustness as well as of course portability. Containerd was formerly a tool that runs as part of Docker container services until Docker decided to graduate its components into standalone components. + +A project in the Cloud Native Computing Foundation, placing it in the same class with popular container tools like Kubernetes, Prometheus, and CoreDNS. + +### Other Docker tooling + +We could also mention toolings and options around Rancher, VirtualBox but we can cover them off in more detail another time. + +[**Gradle**](https://gradle.org/) + +- Build scans allow teams to collaboratively debug their scripts and track the history of all builds. +- Execution options give teams the ability to continuously build so that whenever changes are inputted, the task is automatically executed. +- The custom repository layout gives teams the ability to treat any file directory structure as an artifact repository. + +[**Packer**](https://packer.io/) + +- Ability to create multiple machine images in parallel to save developer time and increase efficiency. +- Teams can easily debug builds using Packer’s debugger, which inspects failures and allows teams to try out solutions before restarting builds. +- Support with many platforms via plugins so teams can customize their builds. + +[**Logspout**](https://github.com/gliderlabs/logspout) + +- Logging tool - The tool’s customisability allows teams to ship the same logs to multiple destinations. +- Teams can easily manage their files because the tool only requires access to the Docker socket. +- Completely open-sourced and easy to deploy. + +[**Logstash**](https://www.elastic.co/products/logstash) + +- Customize your pipeline using Logstash’s pluggable framework. +- Easily parse and transform your data for analysis and to deliver business value. +- Logstash’s variety of outputs let you route your data where you want. + +[**Portainer**](https://www.portainer.io/) + +- Utilise pre-made templates or create your own to deploy applications. +- Create teams and assign roles and permissions to team members. +- Know what is running in each environment using the tool’s dashboard. + + + + +## Resources + +- [TechWorld with Nana - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=3c-iBn73dDE) +- [Programming with Mosh - Docker Tutorial for Beginners](https://www.youtube.com/watch?v=pTFZFxd4hOI) +- [Docker Tutorial for Beginners - What is Docker? Introduction to Containers](https://www.youtube.com/watch?v=17Bl31rlnRM&list=WL&index=128&t=61s) +- [WSL 2 with Docker getting started](https://www.youtube.com/watch?v=5RQbdMn04Oc) +- [Blog on gettng started building a docker image](https://stackify.com/docker-build-a-beginners-guide-to-building-docker-images/) +- [Docker documentation for building an image](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/) +- [YAML Tutorial: Everything You Need to Get Started in Minute](https://www.cloudbees.com/blog/yaml-tutorial-everything-you-need-get-started) +- [Podman | Daemonless Docker | Getting Started with Podman](https://www.youtube.com/watch?v=Za2BqzeZjBk) +- [LXC - Guide to building a LXC Lab](https://www.youtube.com/watch?v=cqOtksmsxfg) +- + + +See you on [Day 49](day49.md) diff --git a/zh_tw/Days/day49.md b/zh_tw/Days/day49.md new file mode 100644 index 000000000..b46c5a48e --- /dev/null +++ b/zh_tw/Days/day49.md @@ -0,0 +1,236 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: Kubernetes - Day 49' +published: false +description: 90DaysOfDevOps - The Big Picture Kubernetes +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049049 +--- +## The Big Picture: Kubernetes + +In the last section we covered Containers, Containers fall short when it comes to scale and orchestration alone. The best we can do is use docker-compose to bring up multiple containers together. When it comes to Kubernetes which is a Container Orchestrator, this gives us the ability to scale up and down in an automated way or based on the load of your applications and services. + +As a platform Kubernetes offers the ability to orchestrate containers according to your requirements and desired state. We are going to cover Kubernetes in this section as it is growing rapidly as the next wave of infrastructure. I would also suggest that from a DevOps perspective Kubernetes is just one platform that you will need to have a basic understanding of, you will also need to understand bare metal, virtualisation and most likely cloud based services as well. Kubernetes is just another option to run our applications. + +### What is Container Orchestration? + +I have mentioned Kubernetes and I have mentioned Container Orchestration, Kubernetes is the technology where as the container orchestration is the concept or the process behind the technology. Kubernetes is not the only Container Orchestration platform we also have Docker Swarm, HashiCorp Nomad and others. But Kubernetes is going from strength to strength so I want to cover Kubernetes but wanted to say that it is not the only one out there. + +### What is Kubernetes? + +The first thing you should read if you are new to Kubernetes is the official documentation, My experience of really deep diving into Kubernetes a little over a year ago was that this is going to be a steep learning curve. Coming from a virtualisation and storage background I was thinking how daunting this felt. + +But actually the community, free learning resources and documentation is actually amazing. [Kubernetes.io](https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/) + +*Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and automation. It has a large, rapidly growing ecosystem. Kubernetes services, support, and tools are widely available.* + +Important things to note from the above qoute, Kubernetes is Open-Source with a rich history that goes back to Google who donated the project to the Cloud Native computing foundation (CNCF) and it has now been progressed by the open-source community as well as large enterprise vendors contributing to make Kubernetes what it is today. + +I mentioned above that containers are great and in the previous section we spoke about how containers and container images have changed and accelerated the adoption of cloud-native systems. But containers alone are not going to give you the production ready experience you need from your application. Kubernetes gives us the following: + +- Service discovery and load balancing Kubernetes can expose a container using the DNS name or using their own IP address. If traffic to a container is high, Kubernetes is able to load balance and distribute the network traffic so that the deployment is stable. + +- Storage orchestration Kubernetes allows you to automatically mount a storage system of your choice, such as local storages, public cloud providers, and more. + +- Automated rollouts and rollbacks You can describe the desired state for your deployed containers using Kubernetes, and it can change the actual state to the desired state at a controlled rate. For example, you can automate Kubernetes to create new containers for your deployment, remove existing containers and adopt all their resources to the new container. + +- Automatic bin packing You provide Kubernetes with a cluster of nodes that it can use to run containerized tasks. You tell Kubernetes how much CPU and memory (RAM) each container needs. Kubernetes can fit containers onto your nodes to make the best use of your resources. + +- Self-healing Kubernetes restarts containers that fail, replaces containers, kills containers that don't respond to your user-defined health check, and doesn't advertise them to clients until they are ready to serve. + +- Secret and configuration management Kubernetes lets you store and manage sensitive information, such as passwords, OAuth tokens, and SSH keys. You can deploy and update secrets and application configuration without rebuilding your container images, and without exposing secrets in your stack configuration. + +Kubernetes provides you with a framework to run distributed systems resiliently. + +Container Orchestration manages the deployment, placement, and lifecycle of containers.​ + +It also has many other responsibilities: ​ + +- Cluster management federates hosts into one target.​ + +- Schedule management distributes containers across nodes through the scheduler. + ​ +- Service discovery knows where containers are located and distributes client requests across them.​ + +- Replication ensures that the right number of nodes and containers are available for the requested workload.​ + +- Health management detects and replaces unhealthy​ containers and nodes. + +### Main Kubernetes Components + +Kubernetes is a container orchestrator to provision, manage, and scale apps. You can use it to manage the lifecycle of containerized apps in a cluster of nodes, which is a collection of worker machines such as VMs or physical machines.​ + +Your apps might need many other resources to run, such as volumes, networks, and secrets that can help you connect to databases, talk to firewalled back ends, and secure keys. With Kubernetes, you can add those resources into your app. Infrastructure resources that your apps need are managed declaratively.​ + +The key paradigm of Kubernetes is its declarative model. You provide the state that you want and Kubernetes makes it happen. If you need five instances, you don't start five separate instances on your own. Instead, you tell Kubernetes that you need five instances, and Kubernetes automatically reconciles the state. If something goes wrong with one of your instances and it fails, Kubernetes still knows the state that you want and creates instances on an available node.​ + +### Node + +**Control Plane** + +Every Kubernetes cluster requires a Control Plane node, the control plane's components make global decisions about the cluster (for example, scheduling), as well as detecting and responding to cluster events. + +![](Images/Day49_Kubernetes1.png) + +**Worker Node** + A worker machine that runs Kubernetes workloads. It can be a physical (bare metal) machine or a virtual machine (VM). Each node can host one or more pods. Kubernetes nodes are managed by a control plane + +![](Images/Day49_Kubernetes2.png) + +There are other node types but I won't be covering them here. + +**kubelet**​ + +An agent that runs on each node in the cluster. It makes sure that containers are running in a Pod.​ + +The kubelet takes a set of PodSpecs that are provided through various mechanisms and ensures that the containers described in those PodSpecs are running and healthy. The kubelet doesn't manage containers which were not created by Kubernetes.​ + +![](Images/Day49_Kubernetes3.png) + +**kube-proxy​** + +kube-proxy is a network proxy that runs on each node in your cluster, implementing part of the Kubernetes Service concept.​ + +kube-proxy maintains network rules on nodes. These network rules allow network communication to your Pods from network sessions inside or outside of your cluster.​ + +kube-proxy uses the operating system packet filtering layer if there is one and it's available. Otherwise, kube-proxy forwards the traffic itself.​ + +![](Images/Day49_Kubernetes4.png) + +**Container runtime**​ + +The container runtime is the software that is responsible for running containers.​ + +Kubernetes supports several container runtimes: Docker, containerd, CRI-O, and any implementation of the Kubernetes CRI (Container Runtime Interface).​ + +![](Images/Day49_Kubernetes5.png) +​ +### Cluster + +A cluster is a group of nodes, where a node can be a physical machine or virtual machines. Each of the nodes will have the container runtime (Docker) and will also be running a kubelet service, which is an agent that takes in the commands from the Master controller (more on that later) and a Proxy, that is used to proxy connections to the Pods from another component (Services, that we will see later).​ + +On our control plane which can be made highly available will contain some unique roles compared to the worker nodes, the most important will be the kube API server, this is where any communication will take place in order to get information or push information to our Kubernetes cluster. + +**Kube API-Server** + +The Kubernetes API server validates and configures data for the api objects which include pods, services, replicationcontrollers, and others. The API Server services REST operations and provides the frontend to the cluster's shared state through which all other components interact. + +**Scheduler** + +The Kubernetes scheduler is a control plane process which assigns Pods to Nodes. The scheduler determines which Nodes are valid placements for each Pod in the scheduling queue according to constraints and available resources. The scheduler then ranks each valid Node and binds the Pod to a suitable Node. + +**Controller Manager** + +The Kubernetes controller manager is a daemon that embeds the core control loops shipped with Kubernetes. In applications of robotics and automation, a control loop is a non-terminating loop that regulates the state of the system. In Kubernetes, a controller is a control loop that watches the shared state of the cluster through the apiserver and makes changes attempting to move the current state towards the desired state. + +**etcd** + +Consistent and highly-available key value store used as Kubernetes' backing store for all cluster data. + +![](Images/Day49_Kubernetes6.png) + +**kubectl** + +In order to manage this from a CLI point of view we have kubectl, kubectl interacts with the API server. + +The Kubernetes command-line tool, kubectl, allows you to run commands against Kubernetes clusters. You can use kubectl to deploy applications, inspect and manage cluster resources, and view logs. + +![](Images/Day49_Kubernetes7.png) + +### Pods + +A Pod is a group of containers that form a logical application. For e.g. If you have a web application that is running a NodeJS container and also a MySQL container, then both these containers will be located in a single Pod. A Pod can also share common data volumes and they also share the same networking namespace. Remember that Pods are ephemeral and they could be brought up and down by the Master Controller. Kubernetes uses a simple but effective means to identify the Pods via the concepts of Labels (name – values).​ + +​- Pods handle Volumes, Secrets, and configuration for containers.​ + +- Pods are ephemeral. They are intended to be restarted automatically when they die.​ + +- Pods are replicated when the app is scaled horizontally by the ReplicationSet. Each Pod will run the same container code.​ + +- Pods live on Worker Nodes.​ + +![](Images/Day49_Kubernetes8.png) +​ +### Deployments + +- You can just decide to run Pods but when they die they die. ​ + +- A Deployment will enable your pod to run continuously. ​ + +- Deployments allow you to update a running app without downtime. ​ + +- Deployments also specify a strategy to restart Pods when they die + +![](Images/Day49_Kubernetes9.png) + +### ReplicaSets + +- The Deployment can also create​ the ReplicaSet ​ + +- A ReplicaSet ensures your app has the desired number of Pods​ + +- ReplicaSets will create and scale Pods based on the Deployment ​ + +- Deployments, ReplicaSets, Pods are not exclusive but can be + + +### StatefulSets + +- Does your App require you to keep information about its state? ​ + +- A database needs state​ + +- A StatefulSet’s Pods are not interchangeable.​ + +- Each Pod has a unique, persistent identifier that the controller maintains over any rescheduling.​ + +- Each Pod has a unique, persistent identifier that the controller maintains over any rescheduling.​ + +![](Images/Day49_Kubernetes10.png) + +### DaemonSets + +- DaemonSets are for continuous process ​ + +- They run one Pod per Node. ​ + +- Each new node added to the cluster gets a pod started​​ + +- Useful for background tasks such as monitoring and log collection ​ + +​- Each Pod has a unique, persistent identifier that the controller maintains over any rescheduling. + +![](Images/Day49_Kubernetes11.png) + +### Services + +- A single endpoint to access Pods ​ + +- a unified way to route traffic to a cluster and eventually to a list of Pods. ​ + +- By using a Service, Pods can be brought up and down without affecting anything.. + +This is just a quick overview and notes around the fundamental building blocks of Kubernetes, we can take this knowledge and add in some other areas around Storage and Ingress to enhance our applications but we then also have a lot of choices on where our Kubernetes cluster runs. The next session will focus on those options on where can I run a Kubernetes cluster, whilst also exploring some specifics around Storage. + +![](Images/Day49_Kubernetes12.png) + +### What we will cover in the series on Kubernetes + +- Kubernetes Architecture +- Kubectl Commands +- Kubernetes YAML +- Kubernetes Ingress +- Kubernetes Services +- Helm Package Manager +- Persistant Storage +- Stateful Apps + +## Resources + +- [Kubernetes Documentation](https://kubernetes.io/docs/home/) +- [TechWorld with Nana - Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]](https://www.youtube.com/watch?v=X48VuDVv0do) +- [TechWorld with Nana - Kubernetes Crash Course for Absolute Beginners](https://www.youtube.com/watch?v=s_o8dwzRlu4) +- [Kunal Kushwaha - Kubernetes Tutorial for Beginners | What is Kubernetes? Architecture Simplified!](https://www.youtube.com/watch?v=KVBON1lA9N8) + +See you on [Day 50](day50.md) diff --git a/zh_tw/Days/day50.md b/zh_tw/Days/day50.md new file mode 100644 index 000000000..8725935e6 --- /dev/null +++ b/zh_tw/Days/day50.md @@ -0,0 +1,77 @@ +--- +title: '#90DaysOfDevOps - Choosing your Kubernetes platform - Day 50' +published: false +description: 90DaysOfDevOps - Choosing your Kubernetes platform +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049046 +--- +## Choosing your Kubernetes platform + +I wanted to use this session to breakdown some of the platforms or maybe distributions is a better term to use here, one thing that has been a challenge in the Kubernetes world is removing complexity. + +Kubernetes the hard way walks through how to build out from nothing to a full blown functional Kubernetes cluster, obviously this is to the extreme but more and more at least the people I am speaking to are wanting to remove that complexity and run a managed Kubernetes cluster. The issue there is that it costs more money but the benefits could be if you use a managed service do you really need to know the underpinning node architecture and what is happening from a Control Plane node point of view when generally you do not have access to this. + +Then we have the local development distributions that enable us to use our own systems and run a local version of Kubernetes so developers can have the full working environment to run their apps in the platform they are intended for. + +The general basis of all of these concepts is that they are all a flavour of Kubernetes which means we should be able to freely migrate and move our workloads where we need them to suit our requirements. + +A lot of our choice will also depend on what investments have been made. I mentioned the developer experience as well but some of those local Kubernetes environments that run our laptops are great for getting to grips with the technology without spending any money. + +### Bare-Metal Clusters + +An option for many could be running your Linux OS straight onto a number of physical servers to create our cluster, it could also be Windows but I have not heard much about the adoption rate around Windows, Containers and Kubernetes. Obviously if you are a business and you have made a CAPEX decision to buy your physical servers then this might be the way in which you go when building out your Kubernetes cluster, the management and admin side here means you are going to have to build yourself and manage everything from the ground up. + +### Virtualisation + +Regardless of test and learning environments or enterprise ready Kubernetes clusters virtualisation is a great way to go, typically the ability to spin up virtual machines to act as your nodes and then cluster those together. You have the underpinning architecture, effciency and speed of virtualisation as well as leveraging that existing spend. VMware for example offers a great solution for both Virtual Machines and Kubernetes in various different flavours. + +My first ever Kubernetes cluster was build based on Virtualisation using Microsoft Hyper-V on an old server that I had which was capable of running a few VMs as my nodes. + +### Local Desktop options + +There are a number of options when it comes to running a local Kubernetes cluster on your desktop or laptop. This as previously said gives developers the ability to see what their app will look like without having to have multiple costly or complex clusters. Personally this has been one that I have used a lot and in particular I have been using minikube. It has some great functionality and add ons which changes the way you get something up and running. + +### Kubernetes Managed Services +I have mentioned virtualisation, and this can be achieved with hypervisors locally but we know from previous sections we could also leverage VMs in the public cloud to act as our nodes. What I am talking about here with Kubernetes managed services are the offerings we see from the large hyperscalers but also from MSPs removing layers of management and control away from the end user, this could be removing the control plane from the end user this is what happens with Amazon EKS, Microsoft AKS and Google Kubernetes Engine. (GKE) + +### Overwhelming choice + +I mean choice is great but there is a point where things become overwhelming and this is really not an depth look into all options within each catagory listed above. On top of the above we also have OpenShift which is from Red Hat and this option can really be ran across the options above in all the major cloud providers and probably today gives the best overall useability to the admins regardless where clusters are deployed. + +So where do you start from your learning perspective, as I said I started with the virtualisation route but that was because I had access to a physical server which I could use for the purpose, I appreciate and in fact since then I no longer have this option. + +My actual advice now would be to use Minikube as a first option or Kind (Kubernetes in Docker) but Minikube gives us some additional benefits which almost abstracts the complexity out as we can just use add ons and get things built out really quickly and we can then blow it away when we are finished, we can run multiple clusters, we can run it almost anywhere, cross platform and hardware agnostic. + +I have been through a bit of a journey with my learning around Kubernetes so I am going to leave the platform choice and specifics here to list out the options that i have tried to give me a better understanding around Kubernetes the platform and where it can run. What I might do with the below blog posts is take another look at these update them and bring them more into here vs them being links to blog posts. + +- [Kubernetes playground – How to choose your platform](https://vzilla.co.uk/vzilla-blog/building-the-home-lab-kubernetes-playground-part-1) +- [Kubernetes playground – Setting up your cluster](https://vzilla.co.uk/vzilla-blog/building-the-home-lab-kubernetes-playground-part-2) +- [Getting started with Amazon Elastic Kubernetes Service (Amazon EKS)](https://vzilla.co.uk/vzilla-blog/getting-started-with-amazon-elastic-kubernetes-service-amazon-eks) +- [Getting started with Microsoft Azure Kubernetes Service (AKS)](https://vzilla.co.uk/vzilla-blog/getting-started-with-microsoft-azure-kubernetes-service-aks) +- [Getting Started with Microsoft AKS – Azure PowerShell Edition](https://vzilla.co.uk/vzilla-blog/getting-started-with-microsoft-aks-azure-powershell-edition) +- [Getting started with Google Kubernetes Service (GKE)](https://vzilla.co.uk/vzilla-blog/getting-started-with-google-kubernetes-service-gke) +- [Kubernetes, How to – AWS Bottlerocket + Amazon EKS](https://vzilla.co.uk/vzilla-blog/kubernetes-how-to-aws-bottlerocket-amazon-eks) +- [Getting started with CIVO Cloud](https://vzilla.co.uk/vzilla-blog/getting-started-with-civo-cloud) +- [Minikube - Kubernetes Demo Environment For Everyone](https://vzilla.co.uk/vzilla-blog/project_pace-kasten-k10-demo-environment-for-everyone) + +### What we will cover in the series on Kubernetes + +- Kubernetes Architecture +- Kubectl Commands +- Kubernetes YAML +- Kubernetes Ingress +- Kubernetes Services +- Helm Package Manager +- Persistant Storage +- Stateful Apps + +## Resources + +- [Kubernetes Documentation](https://kubernetes.io/docs/home/) +- [TechWorld with Nana - Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]](https://www.youtube.com/watch?v=X48VuDVv0do) +- [TechWorld with Nana - Kubernetes Crash Course for Absolute Beginners](https://www.youtube.com/watch?v=s_o8dwzRlu4) +- [Kunal Kushwaha - Kubernetes Tutorial for Beginners | What is Kubernetes? Architecture Simplified!](https://www.youtube.com/watch?v=KVBON1lA9N8) + +See you on [Day 51](day51.md) diff --git a/zh_tw/Days/day51.md b/zh_tw/Days/day51.md new file mode 100644 index 000000000..25e2f258a --- /dev/null +++ b/zh_tw/Days/day51.md @@ -0,0 +1,176 @@ +--- +title: '#90DaysOfDevOps - Deploying your first Kubernetes Cluster - Day 51' +published: false +description: 90DaysOfDevOps - Deploying your first Kubernetes Cluster +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048778 +--- +## Deploying your first Kubernetes Cluster + +In this post we are going get a Kubernetes cluster up and running on our local machine using minikube, this will give us a baseline Kubernetes cluster for the rest of the Kubernetes section, although we will look at deploying a Kubernetes cluster also in VirtualBox later on. The reason for choosing this method vs spinning a managed Kubernetes cluster up in the public cloud is that this is going to cost money even with the free tier, I shared some blogs though if you would like to spin up that environment in the previous section [Day 50](day50.md). + +### What is Minikube? + +*“minikube quickly sets up a local Kubernetes cluster on macOS, Linux, and Windows. We proudly focus on helping application developers and new Kubernetes users.”* + +You might not fit into the above but I have found minikube is a great little tool if you just want to test something out in a Kubernetes fashion, you can easily deploy and app and they have some amazing add ons which I will also cover. + +To begin with regardless of your workstation OS, you can run minikube. First, head over to the [project page here](https://minikube.sigs.k8s.io/docs/start/). The first option you have is choosing your installation method. I did not use this method, but you might choose to vs my way (my way is coming up). + +mentioned below it states that you need to have a “Container or virtual machine manager, such as: Docker, Hyperkit, Hyper-V, KVM, Parallels, Podman, VirtualBox, or VMware” this is where MiniKube will run and the easy option and unless stated in the repository I am using Docker. You can install Docker on your system using the following [link](https://docs.docker.com/get-docker/). + +![](Images/Day51_Kubernetes1.png) + +### My way of installing minikube and other prereqs… + +I have been using arkade for some time now to get all those Kubernetes tools and CLIs, you can see the installation steps on this [github repository](https://github.com/alexellis/arkade) for getting started with Arkade. I have also mentioned this in other blog posts where I needed something installing. The simplicity of just hitting arkade get and then seeing if your tool or cli is available is handy. In the Linux section we spoke about package manager and the process for getting our software, you can think about Arkade as that marketplace for all your apps and clis for Kubernetes. A very handy little tool to have on your systems, written in Golang and cross platform. + +![](Images/Day51_Kubernetes2.png) + +As part of the long list of available apps within arkade minikube is one of them so with a simple `arkade get minikube` command we are now downloading the binary and we are good to go. + +![](Images/Day51_Kubernetes3.png) + +We will also need kubectl as part of our tooling so you can also get this via arkade or I believe that the minikube documentation brings this down as part of the curl commands mentioned above. We will cover more on kubectl later on in the post. + +### Getting a Kubernetes cluster up and running + +For this particular section I want to cover the options available to us when it comes to getting a Kubernetes cluster up and running on your local machine. We could simply run the following command and it would spin up a cluster for you to use. + +minikube is used on the command line, and simply put once you have everything installed you can run `minikube start` to deploy your first Kubernetes cluster. You will see below that the Docker Driver is the default as to where we will be running our nested virtualisation node. I mentioned at the start of the post the other options available, the other options help when you want to expand what this local Kubernetes cluster needs to look like. + +A single Minikube cluster is going to consist of a single docker container in this instance which will have the control plane node and worker node in one instance. Where as typically you would separate those nodes out. Something we will cover in the next section where we look at still home lab type Kubernetes environments but a little closer to production architecture. + +![](Images/Day51_Kubernetes4.png) + +I have mentioned this a few times now, I really like minikube because of the addons available, the ability to deploy a cluster with a simple command including all the required addons from the start really helps me deploy the same required setup everytime. + +Below you can see a list of those addons, I generally use the `csi-hostpath-driver` and the `volumesnapshots` addons but you can see the long list below. Sure these addons can generally be deployed using Helm again something we will cover later on in the Kubernetes section but this makes things much simpler. + +![](Images/Day51_Kubernetes5.png) + +I am also defining in our project some additional configuration, apiserver is set to 6433 instead of a random API port, I define the container runtime also to containerd however docker is default and CRI-O is also available. I am also setting a specific Kubernetes version. + +![](Images/Day51_Kubernetes6.png) + +Now we are ready to deploy our first Kubernetes cluster using minikube. I mentioned before though that you will also need `kubectl` to interact with your cluster. You can get kubectl installed using arkade with the command `arkade get kubectl` + +![](Images/Day51_Kubernetes7.png) + +or you can download cross platform from the following + +- [Linux](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux) +- [macOS](https://kubernetes.io/docs/tasks/tools/install-kubectl-macos) +- [Windows](https://kubernetes.io/docs/tasks/tools/install-kubectl-windows) + +Once you have kubectl installed we can then interact with our cluster with a simple command like `kubectl get nodes` + +![](Images/Day51_Kubernetes8.png) + +### What is kubectl? + +We now have our minikube | Kubernetes cluster up and running and I have asked you to install both Minikube where I have explained at least what it does but I have not really explained what kubectl is and what it does. + +kubectl is a cli that is used or allows you to interact with Kubernetes clusters, we are using it here for interacting with our minikube cluster but we would also use kubectl for interacting with our enterprise clusters across the public cloud. + +We use kubectl to deploy applications, inspect and manage cluster resources. A much better [Overview of kubectl](https://kubernetes.io/docs/reference/kubectl/overview/) can be found here on the Kubernetes official documentation. + +kubectl interacts with the API server found on the Control Plane node which we breifly covered in an earlier post. + +### kubectl cheat sheet + +Along with the official documentation, I have also found myself with this page open all the time when looking for kubectl commands. [Unofficial Kubernetes](https://unofficial-kubernetes.readthedocs.io/en/latest/) + +|Listing Resources | | +| ------------------------------ | ----------------------------------------- | +|kubectl get nodes |List all nodes in cluster | +|kubectl get namespaces |List all namespaces in cluster | +|kubectl get pods |List all pods in default namespace cluster | +|kubectl get pods -n name |List all pods in "name" namespace | +|kubectl get pods -n name |List all pods in "name" namespace | + +|Creating Resources | | +| ------------------------------ | ----------------------------------------- | +|kubectl create namespace name |Create a namespace called "name" | +|kubectl create -f [filename] |Create a resource from a JSON or YAML file:| + +|Editing Resources | | +| ------------------------------ | ----------------------------------------- | +|kubectl edit svc/servicename |To edit a service | + +|More detail on Resources | | +| ------------------------------ | ------------------------------------------------------ | +|kubectl describe nodes | display the state of any number of resources in detail,| + +|Delete Resources | | +| ------------------------------ | ------------------------------------------------------ | +|kubectl delete pod | Remove resources, this can be from stdin or file | + +You will find yourself wanting to know the short names for some of the kubectl commands, for example `-n` is the short name for `namespace` which makes it easier to type a command but also if you are scripting anything you can have much tidier code. + +| Short name | Full name | +| -------------------- | ---------------------------- | +| csr | certificatesigningrequests | +| cs | componentstatuses | +| cm | configmaps | +| ds | daemonsets | +| deploy | deployments | +| ep | endpoints | +| ev | events | +| hpa | horizontalpodautoscalers | +| ing | ingresses | +| limits | limitranges | +| ns | namespaces | +| no | nodes | +| pvc | persistentvolumeclaims | +| pv | persistentvolumes | +| po | pods | +| pdb | poddisruptionbudgets | +| psp | podsecuritypolicies | +| rs | replicasets | +| rc | replicationcontrollers | +| quota | resourcequotas | +| sa | serviceaccounts | +| svc | services | + +The final thing to add here is that I created another project around minikube to help me quickly spin up demo environments to display data services and protecting those workloads with Kasten K10, [Project Pace](https://github.com/MichaelCade/project_pace) can be found there and would love your feedback or interaction, it also displays or includes some automated ways of deploying your minikube clusters and creating different data services applications. + +Next up, we will get in to deploying multiple nodes into virtual machines using VirtualBox but we are going to hit the easy button there like we did in the Linux section where we used vagrant to quickly spin up the machines and deploy our software how we want them. + +I added this list to the post yesterday which are walkthrough blogs I have done around different Kubernetes clusters being deployed. + +- [Kubernetes playground – How to choose your platform](https://vzilla.co.uk/vzilla-blog/building-the-home-lab-kubernetes-playground-part-1) +- [Kubernetes playground – Setting up your cluster](https://vzilla.co.uk/vzilla-blog/building-the-home-lab-kubernetes-playground-part-2) +- [Getting started with Amazon Elastic Kubernetes Service (Amazon EKS)](https://vzilla.co.uk/vzilla-blog/getting-started-with-amazon-elastic-kubernetes-service-amazon-eks) +- [Getting started with Microsoft Azure Kubernetes Service (AKS)](https://vzilla.co.uk/vzilla-blog/getting-started-with-microsoft-azure-kubernetes-service-aks) +- [Getting Started with Microsoft AKS – Azure PowerShell Edition](https://vzilla.co.uk/vzilla-blog/getting-started-with-microsoft-aks-azure-powershell-edition) +- [Getting started with Google Kubernetes Service (GKE)](https://vzilla.co.uk/vzilla-blog/getting-started-with-google-kubernetes-service-gke) +- [Kubernetes, How to – AWS Bottlerocket + Amazon EKS](https://vzilla.co.uk/vzilla-blog/kubernetes-how-to-aws-bottlerocket-amazon-eks) +- [Getting started with CIVO Cloud](https://vzilla.co.uk/vzilla-blog/getting-started-with-civo-cloud) +- [Minikube - Kubernetes Demo Environment For Everyone](https://vzilla.co.uk/vzilla-blog/project_pace-kasten-k10-demo-environment-for-everyone) + +### What we will cover in the series on Kubernetes + +We have started covering some of these mentioned below but we are going to get more hands on tomorrow with our second cluster deployment then we can start deploying applications into our clusters. + +- Kubernetes Architecture +- Kubectl Commands +- Kubernetes YAML +- Kubernetes Ingress +- Kubernetes Services +- Helm Package Manager +- Persistant Storage +- Stateful Apps + +## Resources + +If you have FREE resources that you have used then please feel free to add them in here via a PR to the repository and I will be happy to include them. + +- [Kubernetes Documentation](https://kubernetes.io/docs/home/) +- [TechWorld with Nana - Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]](https://www.youtube.com/watch?v=X48VuDVv0do) +- [TechWorld with Nana - Kubernetes Crash Course for Absolute Beginners](https://www.youtube.com/watch?v=s_o8dwzRlu4) +- [Kunal Kushwaha - Kubernetes Tutorial for Beginners | What is Kubernetes? Architecture Simplified!](https://www.youtube.com/watch?v=KVBON1lA9N8) + +See you on [Day 52](day52.md) diff --git a/zh_tw/Days/day52.md b/zh_tw/Days/day52.md new file mode 100644 index 000000000..2927b86eb --- /dev/null +++ b/zh_tw/Days/day52.md @@ -0,0 +1,180 @@ +--- +title: '#90DaysOfDevOps - Setting up a multinode Kubernetes Cluster - Day 52' +published: false +description: 90DaysOfDevOps - Setting up a multinode Kubernetes Cluster +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049050 +--- +## Setting up a multinode Kubernetes Cluster + +I wanted this title to be "Setting up a multinode Kubernetes cluster with Vagrant" but thought it might be a little too long! + +In the session yesterday we used a cool project to deploy our first Kubernetes cluster and get a little hands on with the most important CLI tool you will come across when using Kubernetes (kubectl). + +Here we are going to use VirtualBox as our base but as mentioned the last time we spoke about Vagrant back in the Linux section we can really use any hypervisor or virtualisation tool supported. It was [Day 14](day14.md) when we went through and deployed an Ubuntu machine for the Linux section. + +### A quick recap on Vagrant + +Vagrant is a CLI utility that manages the lifecyle of your virtual machines. We can use vagrant to spin up and down virtual machines across many different platforms including vSphere, Hyper-v, Virtual Box and also Docker. It does have other providers but we will stick with that we are using Virtual Box here so we are good to go. + +I am going to be using a baseline this [blog and repository](https://devopscube.com/kubernetes-cluster-vagrant/) to walk through the configuration. I would however advise that if this is your first time deploying a Kubernetes cluster then maybe also look into how you would do this manually and then at least you know what this looks like. Although I will say that this Day 0 operations and effort is being made more efficient with every release of Kubernetes. I liken this very much to the days of VMware and ESX and how you would need at least a day to deploy 3 ESX servers now we can have that up and running in an hour. We are heading in that direction when it comes to Kubernetes. + +### Kubernetes Lab environment + +I have uploaded in [Kubernetes folder](days/kubernetes) the vagrantfile that we will be using to build out our environment. Grab this and navigate to this directory in your terminal. I am again using Windows so I will be using PowerShell to perform my workstation commands with vagrant. If you do not have vagrant then you can use arkade, we covered this yesterday when installing minikube and other tools. A simple command `arkade get vagrant` should see you download and install the latest version of vagrant. + +When you are in your directory then you can simply run `vagrant up` and if all is configured correctly then you should see the following kick off in your terminal. + +![](Images/Day52_Kubernetes1.png) + + In the terminal you are going to see a number of steps taking place, but in the meantime let's take a look at what we are actually building here. + +![](Images/Day52_Kubernetes2.png) + +From the above you can see that we are going to build out 3 virtual machines, we will have a control plane node and then two worker nodes. If you head back to [Day 49](Days/day49.md) You will see some more description on these areas we see in the image. + +Also in the image we indicate that our kubectl access will come from outside of the cluster and hit that kube apiserver when in fact as part of the vagrant provisioning we are deploying kubectl on each of these nodes so that we can access the cluster from within each of our nodes. + +The process of building out this lab could take anything from 5 minutes to 30 minutes depending on your setup. + +I am going to cover the scripts shortly as well but you will notice if you look into the vagrant file that we are calling on 3 scripts as part of the deployment and this is really where the cluster is created. We have seen how easy it is to use vagrant to deploy our virtual machines and OS installations using vagrant boxes but having the ability to run a shell script as part of the deployment process is where it gets quite interesting around automating these lab build outs. + +Once complete we can then ssh to one of our nodes `vagrant ssh master` from the terminal should get you access, default username and password is `vagrant/vagrant` + +You can also use `vagrant ssh node01` and `vagrant ssh node02` to gain access to the worker nodes should you wish. + +![](Images/Day52_Kubernetes3.png) + +Now we are in one of the above nodes in our new cluster we can issue `kubectl get nodes` to show our 3 node cluster and the status of this. + +![](Images/Day52_Kubernetes4.png) + +At this point we have a running 3 node cluster, with 1 control plane node and 2 worker nodes. + +### Vagrantfile and Shell Script walkthrough + +If we take a look at our vagrantfile, you will see that we are defining a number of worker nodes, networking IP addresses for the bridged network within VirtualBox and then some naming. Another you will notice is that we are also calling upon some scripts that we want to run on specific hosts. + +``` +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 + ``` +Lets break down those scripts that are being ran. We have three scripts listed in the above VAGRANTFILE to run on specific nodes. + +`master.vm.provision "shell", path: "scripts/common.sh"` + +This script above is going to focus on getting the nodes ready, it is going to be ran on all 3 of our nodes and it will remove any existing Docker components and reinstall Docker and ContainerD as well as kubeadm, kubelet and kubectl. This script will also update existing software packages on the system. + +`master.vm.provision "shell", path: "scripts/master.sh"` + +The master.sh script will only run on the control plane node, this script is going to create the Kubernetes cluster using kubeadm commands. It will also prepare the config context for access to this cluster which we will cover next. + +`node.vm.provision "shell", path: "scripts/node.sh"` + +This is simply going to take the config created by the master and join our nodes to the Kubernetes cluster, this join process again uses kubeadm and another script which can be found in the config folder. + +### Access to the Kubernetes cluster + + Now we have two clusters deployed we have our minikube cluster that we deployed in the previous section and we have the new 3 node cluster we just deployed to VirtualBox. + + Also in that config file that you will also have access to on the machine you ran vagrant from consists of how we can gain access to our cluster from our workstation. + + Before we show that let me touch on the context. + +![](Images/Day52_Kubernetes5.png) + +Context is important, the ability to access your Kubernetes cluster from your desktop or laptop is required. Lots of different options out there and people use obviously different operating systems as their daily drivers. + +By default, the Kubernetes CLI client (kubectl) uses the C:\Users\username\.kube\config to store the Kubernetes cluster details such as endpoint and credentials. If you have deployed a cluster you will be able to see this file in that location. But if you have been using maybe the master node to run all of your kubectl commands so far via SSH or other methods then this post will hopefully help you get to grips with being able to connect with your workstation. + +We then need to grab the kubeconfig file from the cluster or we can also get this from our config file once deployed, grab the contents of this file either via SCP or just open a console session to your master node and copy to the local windows machine. + +![](Images/Day52_Kubernetes6.png) + +We then want to take a copy of that config file and move to our `$HOME/.kube/config` location. + +![](Images/Day52_Kubernetes7.png) + +Now from your local workstation you will be able to run `kubectl cluster-info` and `kubectl get nodes` to validate that you have access to your cluster. + +![](Images/Day52_Kubernetes8.png) + +This not only allows for connectivity and control from your windows machine but this then also allows us to do some port forwarding to access certain services from our windows machine + +If you are interested in how you would manage multiple clusters on your workstation then I have a more detailed walkthrough [here](https://vzilla.co.uk/vzilla-blog/building-the-home-lab-kubernetes-playground-part-6). + +I have added this list which are walkthrough blogs I have done around different Kubernetes clusters being deployed. + +- [Kubernetes playground – How to choose your platform](https://vzilla.co.uk/vzilla-blog/building-the-home-lab-kubernetes-playground-part-1) +- [Kubernetes playground – Setting up your cluster](https://vzilla.co.uk/vzilla-blog/building-the-home-lab-kubernetes-playground-part-2) +- [Getting started with Amazon Elastic Kubernetes Service (Amazon EKS)](https://vzilla.co.uk/vzilla-blog/getting-started-with-amazon-elastic-kubernetes-service-amazon-eks) +- [Getting started with Microsoft Azure Kubernetes Service (AKS)](https://vzilla.co.uk/vzilla-blog/getting-started-with-microsoft-azure-kubernetes-service-aks) +- [Getting Started with Microsoft AKS – Azure PowerShell Edition](https://vzilla.co.uk/vzilla-blog/getting-started-with-microsoft-aks-azure-powershell-edition) +- [Getting started with Google Kubernetes Service (GKE)](https://vzilla.co.uk/vzilla-blog/getting-started-with-google-kubernetes-service-gke) +- [Kubernetes, How to – AWS Bottlerocket + Amazon EKS](https://vzilla.co.uk/vzilla-blog/kubernetes-how-to-aws-bottlerocket-amazon-eks) +- [Getting started with CIVO Cloud](https://vzilla.co.uk/vzilla-blog/getting-started-with-civo-cloud) +- [Minikube - Kubernetes Demo Environment For Everyone](https://vzilla.co.uk/vzilla-blog/project_pace-kasten-k10-demo-environment-for-everyone) + +### What we will cover in the series on Kubernetes + +We have started covering some of these mentioned below but we are going to get more hands on tomorrow with our second cluster deployment then we can start deploying applications into our clusters. + +- Kubernetes Architecture +- Kubectl Commands +- Kubernetes YAML +- Kubernetes Ingress +- Kubernetes Services +- Helm Package Manager +- Persistant Storage +- Stateful Apps + +## Resources + +If you have FREE resources that you have used then please feel free to add them in here via a PR to the repository and I will be happy to include them. + +- [Kubernetes Documentation](https://kubernetes.io/docs/home/) +- [TechWorld with Nana - Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]](https://www.youtube.com/watch?v=X48VuDVv0do) +- [TechWorld with Nana - Kubernetes Crash Course for Absolute Beginners](https://www.youtube.com/watch?v=s_o8dwzRlu4) +- [Kunal Kushwaha - Kubernetes Tutorial for Beginners | What is Kubernetes? Architecture Simplified!](https://www.youtube.com/watch?v=KVBON1lA9N8) + +See you on [Day 53](day53.md) diff --git a/zh_tw/Days/day53.md b/zh_tw/Days/day53.md new file mode 100644 index 000000000..19cc98ff4 --- /dev/null +++ b/zh_tw/Days/day53.md @@ -0,0 +1,128 @@ +--- +title: '#90DaysOfDevOps - Rancher Overview - Hands On - Day 53' +published: false +description: 90DaysOfDevOps - Rancher Overview - Hands On +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048742 +--- +## Rancher Overview - Hands On + +In this section we are going to take a look at Rancher, so far everything we have done has been in the cli and using kubectl but we have a few really good UIs and multi cluster management tools to give our operations teams good visibility into our cluster management. + +Rancher is according to their [site](https://rancher.com/) + +*Rancher is a complete software stack for teams adopting containers. It addresses the operational and security challenges of managing multiple Kubernetes clusters across any infrastructure, while providing DevOps teams with integrated tools for running containerized workloads.* + +Rancher enables us to deploy production grade Kubernetes clusters from pretty much any location and then provides centralised authentication, access control and observability. I mentioned in a previous section that there is almost an overwhelming choice when it comes to Kubernetes and where you should or could run them, looking at Rancher it really doesn't matter where they are. + +### Deploy Rancher + +The first thing we need to do is deploy Rancher on our local workstation, there are few ways and locations you can choose to proceed with this step, for me I want to use my local workstation and run rancher as a docker container. By running the command below we will pull down a container image and then have access to the rancher UI. + +Other rancher deployment methods are available [Rancher Quick-Start-Guide](https://rancher.com/docs/rancher/v2.6/en/quick-start-guide/deployment/) + +`sudo docker run -d --restart=unless-stopped -p 80:80 -p 443:443 --privileged rancher/rancher` + +As you can see in our Docker Desktop we have a running rancher container. + +![](Images/Day53_Kubernetes1.png) + +### Accessing Rancher UI + +With the above container running we should be able to navigate to it via a web page. `https://localhost` will bring up a login page as per below. + +![](Images/Day53_Kubernetes2.png) + +Follow the instructions below to get the password required. Because I am using Windows I chose to use bash for Windows because of the grep command required. + +![](Images/Day53_Kubernetes3.png) + +We can then take the above password and login, the next page is where we can define a new password. + +![](Images/Day53_Kubernetes4.png) + +Once we have done the above we will then be logged in and we can see our opening screen. As part of the Rancher deployment we will also see a local K3s cluster provisioned. + +![](Images/Day53_Kubernetes5.png) + +### A quick tour of rancher + +The first thing for us to look at is our locally deployed K3S cluster You can see below that we get a good visual on what is happening inside our cluster. This is the default deployment and we have not yet deployed anything to this cluster. You can see it is made up of 1 node and has 5 deployments. Then you can also see that there are some stats on pods, cores and memory. + +![](Images/Day53_Kubernetes6.png) + +On the left hand menu we also have an Apps & Marketplace tab, this allows us to choose applications we would like to run on our clusters, as mentioned previously Rancher gives us the capability of running or managing a number of different clusters. With the marketplace we can deploy our applications very easily. + +![](Images/Day53_Kubernetes7.png) + +Another thing to mention is that if you did need to get access to any cluster being managed by Rancher in the top right you have the ability to open a kubectl shell to the selected cluster. + +![](Images/Day53_Kubernetes8.png) + +### Create a new cluster + +Over the past two sessions we have created a minikube cluster locally and we have used Vagrant with VirtualBox to create a 3 node Kubernetes cluster, with Rancher we can also create clusters. In the [Rancher Folder](Days/Kubernetes/Rancher) you will find additional vagrant files that will build out the same 3 nodes but without the steps for creating our Kubernetes cluster (we want Rancher to do this for us) + +We do however want docker installed and for the OS to be updated so you will still see the `common.sh` script being ran on each of our nodes. This will also install Kubeadm, Kubectl etc. But it will not run the Kubeadm commands to create and join our nodes into a cluster. + +We can navigate to our vagrant folder location and we can simply run `vagrant up` and this will begin that process of creating our 3 VMs in virtualbox. + +![](Images/Day53_Kubernetes9.png) + +Now that we have our nodes or VMs in place and ready, we can then use Rancher to create our new Kubernetes cluster. The first screen to create your cluster gives you some options as to where your cluster is, i.e are you using the public cloud managed Kubernetes services, vSphere or something else. + +![](Images/Day53_Kubernetes10.png) + +We will be choosing "custom" as we are not using one of the integrated platforms. The opening page is where you define your cluster name (it says local below but you cannot use local, our cluster is called vagrant.) you can define Kubernetes versions here, network providers and some other configuration options to get your Kubernetes cluster up and running. + +![](Images/Day53_Kubernetes11.png) + +The next page is going to give you the registration code that needs to be ran on each of your nodes with the appropriate services to be enabled. etcd, controlplane and worker. For our master node we want etcd and controlplane so the command can be seen below. + +![](Images/Day53_Kubernetes12.png) + +``` +sudo docker run -d --privileged --restart=unless-stopped --net=host -v /etc/kubernetes:/etc/kubernetes -v /var/run:/var/run rancher/rancher-agent:v2.6.3 --server https://10.0.0.1 --token mpq8cbjjwrj88z4xmf7blqxcfmwdsmq92bmwjpphdkklfckk5hfwc2 --ca-checksum a81944423cbfeeb92be0784edebba1af799735ebc30ba8cbe5cc5f996094f30b --etcd --controlplane +``` + +If networking is configured correctly then you should pretty quickly see the following in your rancher dashboard, indicating that the first master node is now being registered and the cluster is being created. + +![](Images/Day53_Kubernetes13.png) + +We can then repeat the registration process for each of the worker nodes with the following command and after some time you will have your cluster up and running with the ability to leverage the marketplace to deploy your applications. + +``` +sudo docker run -d --privileged --restart=unless-stopped --net=host -v /etc/kubernetes:/etc/kubernetes -v /var/run:/var/run rancher/rancher-agent:v2.6.3 --server https://10.0.0.1 --token mpq8cbjjwrj88z4xmf7blqxcfmwdsmq92bmwjpphdkklfckk5hfwc2 --ca-checksum a81944423cbfeeb92be0784edebba1af799735ebc30ba8cbe5cc5f996094f30b --worker +``` + +![](Images/Day53_Kubernetes14.png) + +Over the last 3 sessions we have used a few different ways to get up and running with a Kubernetes cluster, over the remaining days we are going to look at the application side of the platform arguably the most important. We will look into services and being able to provision and use our service in Kubernetes. + +I have been told since that the requirements around bootstrapping rancher nodes requires those VMs to have 4GB ram or they will crash-loop, I have since updated as our worker nodes had 2GB. + +### What we will cover in the series on Kubernetes + +We have started covering some of these mentioned below but we are going to get more hands on tomorrow with our second cluster deployment then we can start deploying applications into our clusters. + +- Kubernetes Architecture +- Kubectl Commands +- Kubernetes YAML +- Kubernetes Ingress +- Kubernetes Services +- Helm Package Manager +- Persistant Storage +- Stateful Apps + +## Resources + +If you have FREE resources that you have used then please feel free to add them in here via a PR to the repository and I will be happy to include them. + +- [Kubernetes Documentation](https://kubernetes.io/docs/home/) +- [TechWorld with Nana - Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]](https://www.youtube.com/watch?v=X48VuDVv0do) +- [TechWorld with Nana - Kubernetes Crash Course for Absolute Beginners](https://www.youtube.com/watch?v=s_o8dwzRlu4) +- [Kunal Kushwaha - Kubernetes Tutorial for Beginners | What is Kubernetes? Architecture Simplified!](https://www.youtube.com/watch?v=KVBON1lA9N8) + +See you on [Day 54](day54.md) diff --git a/zh_tw/Days/day54.md b/zh_tw/Days/day54.md new file mode 100644 index 000000000..10b78ae4c --- /dev/null +++ b/zh_tw/Days/day54.md @@ -0,0 +1,222 @@ +--- +title: '#90DaysOfDevOps - Kubernetes Application Deployment - Day 54' +published: false +description: 90DaysOfDevOps - Kubernetes Application Deployment +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048764 +--- +## Kubernetes Application Deployment + +Now we finally get to actually deploying some applications into our clusters, some would say this is the reason Kubernetes exists, for Application delivery. + +The idea here is that we can take our container images and now deploy these as pods into our Kubernetes cluster to take advantage of Kubernetes as a container orchestrator. + +### Deploying Apps into Kubernetes + +There are several ways in which we can deploy our applications into our Kubernetes cluster, we will cover two of the most common approaches which will be YAML files and Helm charts. + +We will be using our minikube cluster for these application deployments. We will be walking through some of the previously mentioned components or building blocks of Kubernetes. + +All through this section and the Container section we have discussed about images and the benefits of Kubernetes and how we can handle scale quite easily on this platform. + +In this first step we are simply going to create a stateless application within our minikube cluster. We will be using the defacto standard stateless application in our first demonostration `nginx` we will configure a Deployment, which will provide us with our pods and then we will also create a service which will allow us to navigate to the simple web server hosted by the nginx pod. All of this will be contained in a namespace. + +![](Images/Day54_Kubernetes1.png) + +### Creating the YAML + +In the first demo we want to define everything we do with YAML, we could have a whole section on YAML but I am going to skim over this and leave some resources at the end that will cover YAML in more detail. + +We could create the following as one YAML file or we could break this down for each aspect of our application, i.e this could be separate files for namespace, deployment and service creation but in this file below we separate these by using `---` in one file. You can find this file located [here](Days\Kubernetes\nginx-stateless-demo.yaml) + +``` +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 +``` +### Checking our cluster + +Before we deploy anything we should just make sure that we have no existing namespaces called `nginx` we can do this by running the `kubectl get namespace` command and as you can see below we do not have a namespace called `nginx` + +![](Images/Day54_Kubernetes2.png) + +### Time to deploy our App + +Now we are ready to deploy our application to our minikube cluster, this same process will work on any other Kubernetes cluster. + +We need to navigate to our yaml file location and then we can run `kubectl create -f nginx-stateless-demo.yaml` which you then see that 3 objects have been created, we have a namespace, deployment and service. + +![](Images/Day54_Kubernetes3.png) + +Let's run the command again to see our available namespaces in our cluster `kubectl get namespace` and you can now see that we have our new namespace. + +![](Images/Day54_Kubernetes5.png) + +If we then check our namespace for pods using `kubectl get pods -n nginx` you will see that we have 1 pod in a ready and running state. + +![](Images/Day54_Kubernetes4.png) + +We can also check our service is created by running `kubectl get service -n nginx` + +![](Images/Day54_Kubernetes6.png) + +Finally we can then go and check our deployment, the deployment is where and how we keep our desired configuration. + +![](Images/Day54_Kubernetes7.png) + +The above takes a few commands that are worth knowing but you can also use `kubectl get all -n nginx` to see everything we deployed with that one YAML file. + +![](Images/Day54_Kubernetes8.png) + +You will notice in the above that we also have a replicaset, in our deployment we define how many replicas of our image we would like to deploy. This was set to 1 initially, but if we wanted to quickly scale our application then we can do this several ways. + +We can edit our file using `kubectl edit deployment nginx-deployment -n nginx` which will open a text editor within your terminal and enable you to modify you deployment. + +![](Images/Day54_Kubernetes9.png) + +Upon saving the above in your text editor within the terminal if there was no issues and the correct formatting was used then you should see additional deployed in your namespace. + +![](Images/Day54_Kubernetes10.png) + +We can also make a change to the number of replicas using kubectl and the `kubectl scale deployment nginx-deployment --replicas=10 -n nginx` + +![](Images/Day54_Kubernetes11.png) + +We can equally use this method to scale our application down back to 1 again if we wish using either method. I used the edit option but you can also use the scale command above. + +![](Images/Day54_Kubernetes12.png) + +Hopefully here you can see the use case not only are things super fast to spin up and down but we have the ability to quickly scale up and down our applications. If this was a web server we could scale up during busy times and down when load is quiet. + + +### Exposing our app + +But how do we access our web server? + +If you look above at our service you will see there is no External IP available so we cannot just open a web browser and expect this to be there magically. For access we have a few options. + +**ClusterIP** - The IP you do see is a ClusterIP this is on an internal network on the cluster. Only things within the cluster can reach this IP. + +**NodePort** - Exposes the service on the same port of each of the selected nodes in the cluster using NAT. + +**LoadBalancer** - Creates an external load balancer in the current cloud, we are using minikube but also if you have built your own Kubernetes cluster i.e what we did in VirtualBox you would need to deploy a LoadBalancer such as metallb into your cluster to provide this functionality. + +**Port-Forward** - We also have the ability to Port Forward, which allows you to access and interact with internal Kubernetes cluster processes from your localhost. Really this option is only for testing and fault finding. + +We now have a few options to choose from, Minikube has some limitations or differences I should say to a full blown Kubernetes cluster. + +We could simply run the following command to port forward our access using our local workstation. + +`kubectl port-forward deployment/nginx-deployment -n nginx 8090:80` + +![](Images/Day54_Kubernetes13.png) + +note that when you run the above command this terminal is now unusable as this is acting as your port forward to your local machine and port. + +![](Images/Day54_Kubernetes14.png) + +We are now going to run through specifically with Minikube how we can expose our application. We can also use minikube to create a URL to connect to a service [More details](https://minikube.sigs.k8s.io/docs/commands/service/) + +First of all we will delete our service using `kubectl delete service nginx-service -n nginx` + +Next we are going to create a new service using `kubectl expose deployment nginx-deployment --name nginx-service --namespace nginx --port=80 --type=NodePort` notice here we are going to use the expose and change the type to NodePort. + +![](Images/Day54_Kubernetes15.png) + +Finally in a new terminal run `minikube --profile='mc-demo' service nginx-service --url -n nginx` to create a tunnel for our service. + +![](Images/Day54_Kubernetes16.png) + +Open a browser or control and click on the link in your terminal. + +![](Images/Day54_Kubernetes17.png) + +### Helm + +Helm is another way in which we can deploy our applications. Known as "The package manager for Kubernetes" You can find out more [here](https://helm.sh/) + +Helm is a package manager for Kubernetes. Helm could be considered the Kubernetes equivalent of yum or apt. Helm deploys charts, which you can think of like a packaged application., it is a blueprint for your pre-configured application resources which can be deployed as one easy to use chart. You can then deploy another version of the chart with a different set of configurations. + +They have a site where you can browse all the Helm charts available and of course you can create your own. The documentation is also clear and concise and not as daunting as when I first started hearing the term helm amongst all of the other new words in this space. + +It is super simple to get Helm up and running or installed. Simply. You can find the binaries and download links here for pretty much all distributions including your RaspberryPi arm64 devices. + +Or you can use an installer script, the benefit here is that the latest version of the helm will be downloaded and installed. + +``` +curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 + +chmod 700 get_helm.sh + +./get_helm.sh +``` + +Finally, there is also the option to use a package manager for the application manager, homebrew for mac, chocolatey for windows, apt with Ubuntu/Debian, snap and pkg also. + +Helm so far seems to be the go-to way to get different test applications downloaded and installed in your cluster. + +A good resource to link here would be [ArtifactHUB](https://artifacthub.io/) which is a resource to find, install and publish Kubernetes packages. I will also give a shout out to [KubeApps](https://kubeapps.com/) which is a UI to display helm charts. + +### What we will cover in the series on Kubernetes + +We have started covering some of these mentioned below but we are going to get more hands on tomorrow with our second cluster deployment then we can start deploying applications into our clusters. + +- Kubernetes Architecture +- Kubectl Commands +- Kubernetes YAML +- Kubernetes Ingress +- Kubernetes Services +- Helm Package Manager +- Persistant Storage +- Stateful Apps + +## Resources + +If you have FREE resources that you have used then please feel free to add them in here via a PR to the repository and I will be happy to include them. + +- [Kubernetes Documentation](https://kubernetes.io/docs/home/) +- [TechWorld with Nana - Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]](https://www.youtube.com/watch?v=X48VuDVv0do) +- [TechWorld with Nana - Kubernetes Crash Course for Absolute Beginners](https://www.youtube.com/watch?v=s_o8dwzRlu4) +- [Kunal Kushwaha - Kubernetes Tutorial for Beginners | What is Kubernetes? Architecture Simplified!](https://www.youtube.com/watch?v=KVBON1lA9N8) + +See you on [Day 55](day55.md) diff --git a/zh_tw/Days/day55.md b/zh_tw/Days/day55.md new file mode 100644 index 000000000..55dde3241 --- /dev/null +++ b/zh_tw/Days/day55.md @@ -0,0 +1,236 @@ +--- +title: '#90DaysOfDevOps - State and Ingress in Kubernetes - Day 55' +published: false +description: 90DaysOfDevOps - State and Ingress in Kubernetes +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048779 +--- +## State and Ingress in Kubernetes +In this closing section of Kubernetes, we are going to take a look at State and ingress. + +Everything we have said so far is about stateless, stateless is really where our applications do not care which network it is using and does not need any permanent storage. Whereas stateful apps, databases for example for such an application to function correctly, you’ll need to ensure that pods can reach each other through a unique identity that does not change (hostnames, IPs...etc.). Examples of stateful applications include MySQL clusters, Redis, Kafka, MongoDB and others. Basically though any application that stores data. + +### Stateful Application + +StatefulSets represent a set of Pods with unique, persistent identities and stable hostnames that Kubernetes maintains regardless of where they are scheduled. The state information and other resilient data for any given StatefulSet Pod is maintained in persistent disk storage associated with the StatefulSet. + +### Deployment vs StatefulSet + +- Replicating stateful applications is more difficult. +- Replicating our pods in a deployment (Stateless Application) is identical and interchangable. +- Create pods in random order with random hashes +- One Service that load balances to any Pod. + +When it comes to StatefulSets or Stateful Applications the above is more difficult. + +- Cannot be created or deleted at the same time. +- Can't be randomly addressed. +- replica Pods are not identical + +Something you will see in our demonstration shortly is that each pod has its own identity. With a stateless Application you will see random names. For example `app-7469bbb6d7-9mhxd` where as a Stateful Application would be more aligned to `mongo-0` and then when scaled it will create a new pod called `mongo-1`. + +These pods are created from the same specification, but they are not interchangable. Each StatefulSet pod has a persistent identifier across any re-scheduling. This is necessary because when we require stateful workloads such as a database where we require writing and reading to a database, we cannot have two pods writing at the same time with no awareness as this will give us data inconsistency. We need to ensure that only one of our pods is writing to the database at any given time however we can have multiple pods reading that data. + +Each pod in a StatefulSet would have access to its own persistent volume and replica copy of the database to read from, this is continuously updated from the master. Its also interesting to note that each pod will also store its pod state in this persistent volume, if then `mongo-0` dies then when a new one is provisioned it will take over the pod state stored in storage. + +TLDR; StatefulSets vs Deployments + +- Predicatable pod name = `mongo-0` +- Fixed individual DNS name +- Pod Identity - Retain State, Retain Role +- Replicating stateful apps is complex + - There are lots of things you must do: + - Configure cloning and data synchronisation. + - Make remote shared storage available. + - Management & backup + +### Persistant Volumes | Claims | StorageClass + +How to persist data in Kubernetes? + +We mentioned above when we have a stateful application, we have to store the state somewhere and this is where the need for a volume comes in, out of the box Kubernetes does not provide persistance out of the box. + +We require a storage layer that does not depend on the pod lifecycle. This storage should be available and accessible from all of our Kubernetes nodes. The storage should also be outside of the Kubernetes cluster to be able to survive even if the Kubernetes cluster crashes. + +### Persistent Volume + +- A cluster resource (like CPU and RAM) to store data. +- Created via a YAML file +- Needs actual physical storage (NAS) +- External integration to your Kubernetes cluster +- You can have different types of storage available in your storage. +- PVs are not namespaced +- Local storage is available but it would be specific to one node in the cluster +- Database persistence should use remote storage (NAS) + +### Persistent Volume Claim + +A persistent volume alone above can be there and available but unless it is claimed by an application it is not being used. + +- Created via a YAML file +- Persistent Volume Claim is used in pod configuration (volumes attribute) +- PVCs live in the same namespace as the pod +- Volume is mounted into the pod +- Pods can have multiple different volume types (ConfigMap, Secret, PVC) + +Another way to think of PVs and PVCs is that + +PVs are created by the Kubernetes Admin +PVCs are created by the user or application developer + +We also have two other types of volumes that we will not get into detail on but worth mentioning: + +### ConfigMaps | Secrets +- Configuration file for your pod. +- Certificate file for your pod. + +### StorageClass + +- Created via a YAML file +- Provisions Persistent Volumes Dynamically when a PVC claims it +- Each storage backend has its own provisioner +- Storage backend is defined in YAML (via provisioner attribute) +- Abstracts underlying storage provider +- Define parameters for that storage + + +### Walkthrough time + +In the session yesterday we walked through creating a stateless application, here we want to do the same but we want to use our minikube cluster to deploy a stateful workload. + +A recap on the minikube command we are using to have the capability and addons to use persistence is `minikube start --addons volumesnapshots,csi-hostpath-driver --apiserver-port=6443 --container-runtime=containerd -p mc-demo --kubernetes-version=1.21.2` + +This command uses the csi-hostpath-driver which is what gives us our storageclass, something I will show later. + +The build out of the application looks like the below: + +![](Images/Day55_Kubernetes1.png) + +You can find the YAML configuration file for this application here[pacman-stateful-demo.yaml](Days/Kubernetes/pacman-stateful-demo.yaml) + +### StorageClass Configuration + +There is one more step though that we should run before we start deploying our application and that is make sure that our storageclass (csi-hostpath-sc) is our default one. We can firstly check this by running the `kubectl get storageclass` command but out of the box the minikube cluster will be showing the standard storageclass as default so we have to change that with the following commands. + +This first command will make our csi-hostpath-sc storageclass our default. + +`kubectl patch storageclass csi-hostpath-sc -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}'` + +This command will remove the default annotation from the standard StorageClass. + +`kubectl patch storageclass standard -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"false"}}}'` + +![](Images/Day55_Kubernetes2.png) + +We start with no pacman namespace in our cluster. `kubectl get namespace` + +![](Images/Day55_Kubernetes3.png) + +We will then deploy our YAML file. `kubectl create -f pacman-stateful-demo.yaml` you can see from this command we are creating a number of objects within our Kubernetes cluster. + +![](Images/Day55_Kubernetes4.png) + +We now have our newly created namespace. + +![](Images/Day55_Kubernetes5.png) + +You can then see from the next image and command `kubectl get all -n pacman` that we have a number of things happening inside of our namespace. We have our pods running our NodeJS web front end, we have mongo running our backend database. There are services for both pacman and mongo to access those pods. We have a deployment for pacman and a statefulset for mongo. + +![](Images/Day55_Kubernetes6.png) + +We also have our persistent volume and persistent volume claim by running `kubectl get pv` will give us our non namespaced persistent volumes and running `kubectl get pvc -n pacman` will give us our namespaced persistent volume claims. + +![](Images/Day55_Kubernetes7.png) + +### Playing the game | I mean accessing our mission critical application + +Because we are using Minikube as mentioned in the stateless application we have a few hurdles to get over when it comes to accessing our application, If however we had access to ingress or a load balancer within our cluster the service is set up to automatically get an IP from that to gain access externally. (you can see this above in the image of all components in the pacman namespace). + +For this demo we are going to use the port forward method to access our application. By opening a new terminal and running the following `kubectl port-forward svc/pacman 9090:80 -n pacman` command, opening a browser we will now have access to our application. If you are running this in AWS or specific locations then this will also report on the cloud and zone as well as the host which equals your pod within Kubernetes, again you can look back and see this pod name in our screenshots above. + +![](Images/Day55_Kubernetes8.png) + +Now we can go and create a high score which will then be stored in our database. + +![](Images/Day55_Kubernetes9.png) + +Ok, great we have a high score but what happens if we go and delete our `mongo-0` pod? by running `kubectl delete pod mongo-0 -n pacman` I can delete that and if you are still in the app you will see that high score not available at least for a few seconds. + +![](Images/Day55_Kubernetes10.png) + +Now if I go back to my game I can create a new game and see my high scores. The only way you can truly believe me on this though is if you give it a try and share on social media your high scores! + +![](Images/Day55_Kubernetes11.png) + +With the deployment we can scale this up using the commands that we covered in the previous session but in particular here, especially if you want to host a huge pacman party then you can scale this up using `kubectl scale deployment pacman --replicas=10 -n pacman` + +![](Images/Day55_Kubernetes12.png) + + +### Ingress explained +Before we wrap things up with Kubernetes I also wanted to touch on a huge aspect of Kubernetes and that is ingress. + +### What is ingress? + +So far with our examples we have used port-forward or we have used specific commands within minikube to gain access to our applications but this in production is not going to work. We are going to want a better way of accessing our applications at scale with multiple users. + +We also spoke about NodePort being an option but again this should be only for test purposes. + +Ingress gives us a better way of exposing our applications, this allows us to define routing rules within our Kubernetes cluster. + +For ingress we would create a forward request to the internal service of our application. + +### When do you need ingress? +If you are using a cloud provider, a managed Kubernetes offering they most likely will have their own ingress option for your cluster or they provide you with their own load balancer option. You don't have to implement this yourself, one of the benefits of managed Kubernetes. + +If you are running your own cluster then you will need to configure an entrypoint. + +### Configure Ingress on Minikube + +On my particular running cluster called mc-demo I can run the following command to get ingress enabled on my cluster. + +`minikube --profile='mc-demo' addons enable ingress` + +![](Images/Day55_Kubernetes13.png) + +If we check our namespaces now you will see that we have a new ingress-nginx namespace. `kubectl get ns` + +![](Images/Day55_Kubernetes14.png) + +Now we must create our ingress YAML configuration to hit our Pacman service I have added this file to the repository [pacman-ingress.yaml](Days/Kubernetes/pacman-ingress.yaml) + +We can then create this in our ingress namespace with `kubectl create -f pacman-ingress.yaml` + +![](Images/Day55_Kubernetes15.png) + +Then if we run `kubectl get ingress -n pacman` + +![](Images/Day55_Kubernetes16.png) + +I am then told because we are using minikube running on WSL2 in Windows we have to create the minikube tunnel using `minikube tunnel --profile=mc-demo` + +But I am still not able to gain access to 192.168.49.2 and play my pacman game. + +If anyone has or can get this working on Windows and WSL I would appreciate the feedback. I will raise an issue on the repository for this and come back to it once I have time and a fix. + +UPDATE: I feel like this blog helps identify maybe the cause of this not working with WSL [Configuring Ingress to run Minikube on WSL2 using Docker runtime](https://hellokube.dev/posts/configure-minikube-ingress-on-wsl2/) + +## Resources + +If you have FREE resources that you have used then please feel free to add them in here via a PR to the repository and I will be happy to include them. + +- [Kubernetes StatefulSet simply explained](https://www.youtube.com/watch?v=pPQKAR1pA9U) +- [Kubernetes Volumes explained](https://www.youtube.com/watch?v=0swOh5C3OVM) +- [Kubernetes Ingress Tutorial for Beginners](https://www.youtube.com/watch?v=80Ew_fsV4rM) +- [Kubernetes Documentation](https://kubernetes.io/docs/home/) +- [TechWorld with Nana - Kubernetes Tutorial for Beginners [FULL COURSE in 4 Hours]](https://www.youtube.com/watch?v=X48VuDVv0do) +- [TechWorld with Nana - Kubernetes Crash Course for Absolute Beginners](https://www.youtube.com/watch?v=s_o8dwzRlu4) +- [Kunal Kushwaha - Kubernetes Tutorial for Beginners | What is Kubernetes? Architecture Simplified!](https://www.youtube.com/watch?v=KVBON1lA9N8) + +This wraps up our Kubernetes section, there is so much additional content we could cover on Kubernetes and 7 days gives us a foundational knowledge but there are people running through [100DaysOfKubernetes](https://100daysofkubernetes.io/overview.html) where you can get really into the weeds. + +Next up we are going to be taking a look at Infrastructure as Code and the important role it plays from a DevOps perspective. + +See you on [Day 56](day56.md) diff --git a/zh_tw/Days/day56.md b/zh_tw/Days/day56.md new file mode 100644 index 000000000..c4bad6cd9 --- /dev/null +++ b/zh_tw/Days/day56.md @@ -0,0 +1,126 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: IaC - Day 56' +published: false +description: 90DaysOfDevOps - The Big Picture IaC +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048709 +--- +## The Big Picture: IaC + +Humans make mistakes! Automation is the way to go! + +How do you build your systems today? + +What would be your plan if you were to lose everything today, Physical machines, Virtual Machines, Cloud VMs, Cloud PaaS etc etc.? + +How long would it take you to replace everything? + +Infrastructure as code provides a solution to be able to do this whilst also being able to test this, we should not confuse this with backup and recovery but in terms of your infrastructure and environments, your platforms we should be able to spin them up and treat them as cattle vs pets. + +The TLDR; is that we can use code to rebuild our whole entire environment. + +If we also remember from the start we said about DevOps in general is a way in which to break down barriers to deliver systems into production safely and rapidly. + +Infrastructure as code helps us deliver the systems, we have spoken a lot of processes and tools. IaC brings us more tools to be familiar with to enable this part of the process. + +We are going to concentrate on Infrastructure as code in this section. You might also hear this mentioned as Infrastructure from code or configuration as code. I think the most well known term is likely Infrastructure as code. + +### Pets vs Cattle + +If we take a look at pre DevOps, if we had the requirement to build a new Application, we would need to prepare our servers manually for the most part. + +- Deploy VMs | Physical Servers and install operating system +- Configure networking +- Create routing tables +- Install software and updates +- Configure software +- Install database + +This would be a manual process performed by Systems Administrators. The bigger the application the more resource and servers required the more manual effort it would take to bring up those systems. This would take a huge amount of human effort and time but also as a business you would have to pay for that resource to build out this environment. As I opened the section with "Humans make mistakes! Automation is the way to go!" + +Ongoing from the above initial setup phase you then have maintenance of these servers. + +- Update versions +- Deploy new releases +- Data Management +- Recovery of Applications +- Add, Remove and Scale Servers +- Network Configuration + +Add the complexity of multiple test and dev environments. + +This is where Infrastructure as Code comes in, the above was very much a time where we would look after those servers as if they were pets, people even called them servers pet names or at least named them something because they were going to be around for a while, they were going to hopefully be part of the "family" for a while. + +With Infrastructure as Code we have the ability to automate all these tasks end to end. Infrastructure as code is a concept and there are tools that carry out this automated provisioning of infrastructure, at this point if something bad happens to a server you throw it away and you spin up a new one. This process is automated and the server is exactly as defined in code. At this point we don't care what they are called they are there in the field serving their purpose until they are no longer in the field and we have another to replace it either because of a failure or because we updated part or all of our application. + +This can be used in almost all platforms, virtualisation, cloud based workloads and also cloud-native infrastructure such as Kubernetes and containers. + +### Infrastructure Provisioning +Not all IaC cover all of the below, You will find that the tool we are going to be using during this section only really covers the the first 2 areas of below; Terraform is that tool we will be covering and this allows us to start from nothing and define in code what our infrastructure should look like and then deploy that, it will also enable us to manage that infrastructure and also initially deploy an application but at that point it is going to lose track of the application which is where the next section comes in and something like Ansible as a configuration management tool might work better on that front. + +Without jumping ahead tools like chef, puppet and ansible are best suited to deal with the initial application setup and then to manage those applications and their configuration. + +Initial installation & configuration of software + +- Spinning up new servers +- Network configuration +- Creating load balancers +- Configuration on infrastructure level + +### Configuration of provisioned infrastructure + +- Installing application on servers +- Prepare the servers to deploy your application. + +### Deployment of Application + +- Deploy and Manage Application +- Maintain phase +- Software updates +- Reconfiguration + +### Difference of IaC tools + +Declarative vs procedural + +Procedural +- Step by step instruction +- Create a server > Add a server > Make this change + +Declartive +- declare end result +- 2 Servers + +Mutable (pets) vs Immutable (cattle) + +Mutable +- Change instead of replace +- Generally long lived + +Immutable +- Replace instead of change +- Possibly short lived + +This is really why we have lots of different options for Infrastructure as Code because there is no one tool to rule them all. + +We are going to be mostly using terraform and getting hands on as this is the best way to start seeing the benefits of Infrastructure as Code when it is in action. Getting hands on is also the best way to pick up the skills as you are going to be writing code. + +Next up we will start looking into Terraform with a 101 before we get some hands on get using. + +## Resources +I have listed a lot of resources down below and I think this topic has been covered so many times out there, If you have additional resources be sure to raise a PR with your resources and I will be happy to review and add them to the list. + +- [What is Infrastructure as Code? Difference of Infrastructure as Code Tools ](https://www.youtube.com/watch?v=POPP2WTJ8es) +- [Terraform Tutorial | Terraform Course Overview 2021](https://www.youtube.com/watch?v=m3cKkYXl-8o) +- [Terraform explained in 15 mins | Terraform Tutorial for Beginners ](https://www.youtube.com/watch?v=l5k1ai_GBDE) +- [Terraform Course - From BEGINNER to PRO!](https://www.youtube.com/watch?v=7xngnjfIlK4&list=WL&index=141&t=16s) +- [HashiCorp Terraform Associate Certification Course](https://www.youtube.com/watch?v=V4waklkBC38&list=WL&index=55&t=111s) +- [Terraform Full Course for Beginners](https://www.youtube.com/watch?v=EJ3N-hhiWv0&list=WL&index=39&t=27s) +- [KodeKloud - Terraform for DevOps Beginners + Labs: Complete Step by Step Guide!](https://www.youtube.com/watch?v=YcJ9IeukJL8&list=WL&index=16&t=11s) +- [Terraform Simple Projects](https://terraform.joshuajebaraj.com/) +- [Terraform Tutorial - The Best Project Ideas](https://www.youtube.com/watch?v=oA-pPa0vfks) +- [Awesome Terraform](https://github.com/shuaibiyy/awesome-terraform) + +See you on [Day 57](day57.md) diff --git a/zh_tw/Days/day57.md b/zh_tw/Days/day57.md new file mode 100644 index 000000000..471b82a05 --- /dev/null +++ b/zh_tw/Days/day57.md @@ -0,0 +1,101 @@ +--- +title: '#90DaysOfDevOps - An intro to Terraform - Day 57' +published: false +description: 90DaysOfDevOps - An intro to Terraform +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048710 +--- +## An intro to Terraform + +"Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently" + +The above quote is from HashiCorp, HashiCorp is the company behind Terraform. + +"Terraform is an open-source infrastructure as code software tool that provides a consistent CLI workflow to manage hundreds of cloud services. Terraform codifies cloud APIs into declarative configuration files." + +HashiCorp have a great resource in [HashiCorp Learn](https://learn.hashicorp.com/terraform?utm_source=terraform_io&utm_content=terraform_io_hero) which covers all of their products and gives some great walkthrough demos when you are trying to achieve something with Infrastructure as Code. + +All cloud providers and on prem platforms generally give us access to management consoles which enables us to create our resources via a UI, generally these platforms also provide a CLI or API access to also create the same resources but with an API we have the ability to provision fast. + +Infrastructure as Code allows us to hook into those APIs to deploy our resources in a desired state. + +Other tools but not exclusive or exhaustive below. If you have other tools then please share via a PR. + +| Cloud Specific | Cloud Agnostic | +| ------------------------------- | -------------- | +| AWS CloudFormation | Terraform | +| Azure Resource Manager | Pulumi | +| Google Cloud Deployment Manager | | + +This is another reason why we are using Terraform, we want to be agnostic to the clouds and platforms that we wish to use for our demos but also in general. + +## Terraform Overview + +Terraform is a provisioning focused tool, Terraform is a CLI that gives the capabilities of being able to provision complex infrastructure environments. With Terraform we can define complex infrastructure requirements that exist locally or remote (cloud) Terraform not only enables us to build things initially but also to maintain and update those resources for their lifetime. + +We are going to cover the high level here but for more details and loads of resources you can head to [terraform.io](https://www.terraform.io/) + +### Write + +Terraform allows us to create declaritive configuration files that will build our environments. The files are written using the HashiCorp Configuration Language (HCL) which allows for concise descriptions of resources using blocks, arguments, and expressions. We will of course be looking into these in detail in deploying VMs, Containers and within Kubernetes. + + +### Plan + +The ability to check that the above configuration files are going to deploy what we want to see using specific functions of the terraform cli to be able to test that plan before deploying anything or changing anything. Remember Terraform is a continued tool for your infrastructure if you would like to change aspect of your infrastructure you should do that via terraform so that it is captured all in code. + +### Apply + +Obviously once you are happy you can go ahead and apply this configuration to the many providers that are available within Terraform. You can see the large amount of providers available [here](https://registry.terraform.io/browse/providers) + +Another thing to mention is that there are also modules available, and this is similar to container images in that these modules have been created and shared in public so you do not have to create it again and again just re use the best practice of deploying a specific infrastructure resource the same way everywhere. You can find the modules available [here](https://registry.terraform.io/browse/modules) + + +The Terraform workflow looks like this: (*taken from the terraform site*) + + +![](https://www.terraform.io/_next/static/images/how-tf-works-2-88c36cecdbf1d3a92cc3976dd85ff8ad.png?fit=max&fm=webp&q=80&w=2500) + +### Terraform vs Vagrant + +During this challenge we have used Vagrant which happens to be another Hashicorp open source tool which concentrates on the development environments. + +- Vagrant is a tool focused for managing development environments + +- Terraform is a tool for building infrastructure. + +A great comparison of the two tools can be found here on the official [Hashicorp site](https://www.vagrantup.com/intro/vs/terraform) + + +## Terraform Installation + +There is really not much to the installation of Terraform. + +Terraform is cross platform and you can see below on my Linux machine we have several options to download and install the CLI + +![](Images/Day57_IAC2.png) + + +Using `arkade` to install Terraform, arkade is a handy little tool for getting your required tools, apps and clis onto your system. A simple `arkade get terraform` will allow for an update of terraform if available or this same command will also install the Terraform CLI + +![](Images/Day57_IAC1.png) + +We are going to get into more around HCL and then also start using Terraform to create some infrastructure resources in various different platforms. + +## Resources +I have listed a lot of resources down below and I think this topic has been covered so many times out there, If you have additional resources be sure to raise a PR with your resources and I will be happy to review and add them to the list. + +- [What is Infrastructure as Code? Difference of Infrastructure as Code Tools ](https://www.youtube.com/watch?v=POPP2WTJ8es) +- [Terraform Tutorial | Terraform Course Overview 2021](https://www.youtube.com/watch?v=m3cKkYXl-8o) +- [Terraform explained in 15 mins | Terraform Tutorial for Beginners ](https://www.youtube.com/watch?v=l5k1ai_GBDE) +- [Terraform Course - From BEGINNER to PRO!](https://www.youtube.com/watch?v=7xngnjfIlK4&list=WL&index=141&t=16s) +- [HashiCorp Terraform Associate Certification Course](https://www.youtube.com/watch?v=V4waklkBC38&list=WL&index=55&t=111s) +- [Terraform Full Course for Beginners](https://www.youtube.com/watch?v=EJ3N-hhiWv0&list=WL&index=39&t=27s) +- [KodeKloud - Terraform for DevOps Beginners + Labs: Complete Step by Step Guide!](https://www.youtube.com/watch?v=YcJ9IeukJL8&list=WL&index=16&t=11s) +- [Terraform Simple Projects](https://terraform.joshuajebaraj.com/) +- [Terraform Tutorial - The Best Project Ideas](https://www.youtube.com/watch?v=oA-pPa0vfks) +- [Awesome Terraform](https://github.com/shuaibiyy/awesome-terraform) + +See you on [Day 58](day58.md) diff --git a/zh_tw/Days/day58.md b/zh_tw/Days/day58.md new file mode 100644 index 000000000..cdb9b6eeb --- /dev/null +++ b/zh_tw/Days/day58.md @@ -0,0 +1,233 @@ +--- +title: '#90DaysOfDevOps - HashiCorp Configuration Language (HCL) - Day 58' +published: false +description: 90DaysOfDevOps - HashiCorp Configuration Language (HCL) +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048741 +--- +## HashiCorp Configuration Language (HCL) + +Before we start making stuff with Terraform we have to dive a little into HashiCorp Configuration Language (HCL). So far during our challenge we have looked at a few different scripting and programming languages and here is another one. We touched on the [Go programming language](Days/day07.md) then [bash scripts](Days/day19.md) we even touched on a little python when it came to [network automation](Days/day27.md) + +Now we must cover HashiCorp Configuration Language (HCL) if this is the first time you are seeing the language it might look a little daunting but its quite simple and very powerful. + +As we move through this section, we are going to be using examples that we can run locally on our system regardless of what OS you are using, we will be using virtualbox, albeit not the infrastructure platform you would usually be using with Terraform. However running this locally, it is free and will allow us to achieve what we are looking for in this post. We could also extend this posts concepts to docker or Kubernetes as well. + +In general though, you would or should be using Terraform to deploy your infrastructure in the public cloud (AWS, Google, Microsoft Azure) but then also in your virtualisation environments such as (VMware, Microsoft Hyper-V, Nutanix AHV). In the public cloud Terraform allows for us to do a lot more than just Virtual Machine automated deployment, we can create all the required infrastructure such as PaaS workloads and all of the networking required assets such as VPCs and Security Groups. + +There are two important aspects to Terraform, we have the code which we are going to get into in this post and then we also have the state. Both of these together could be called the Terraform core. We then have the environment we wish to speak to and deploy into, which is executed using Terraform providers, briefly mentioned in the last session, but we have an AWS provider, we have an Azure providers etc. There are hundreds. + +### Basic Terraform Usage + +Let's take a look at a Terraform `.tf` file to see how they are made up. The first example we will walk through will in fact be code to deploy resources to AWS, this would then also require the AWS CLI to be installed on your system and configured for your account. + + +### Providers + +At the top of our `.tf` file structure, generally called `main.tf` at least until we make things more complex. Here we will define the providers that we have mentioned before. Our source of the aws provider as you can see is `hashicorp/aws` this means the provider is maintained or has been published by hashicorp themselves. By default you will reference providers that are available from the [Terraform Registry](https://registry.terraform.io/), you also have the ability to write your own providers, and use these locally, or self-publish to the Terraform Registry. + +``` +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = "~> 3.0" + } + } +} +``` +We might also add in a region as well here to determine which AWS region we would like to provision to we can do this by adding the following: + +``` +provider "aws" { + region = "ap-southeast-1" //region where resources need to be deployed +} +``` + +### Resources + +- Another important component of a terraform config file which describes one or more infrastructure objects like EC2, Load Balancer, VPC, etc. + +- A resource block declares a resource of a given type ("aws_instance") with a given local name ("90daysofdevops"). + +- The resource type and name together serve as an identifier for a given resource. + + +``` +resource "aws_instance" "90daysofdevops" { + ami = data.aws_ami.instance_id.id + instance_type = "t2.micro" + availability_zone = "us-west-2a" + security_groups = [aws_security_group.allow_web.name] + user_data = <<-EOF + #! /bin/bash + sudo yum update + sudo yum install -y httpd + sudo systemctl start httpd + sudo systemctl enable httpd + echo " +

Deployed via Terraform

+ +" | sudo tee /var/www/html/index.html + EOF + tags = { + Name = "Created by Terraform" + } +} +``` + +You can see from the above we are also running a `yum` update and installing `httpd` into our ec2 instance. + +If we now look at the complete main.tf file it might look something like this. + +``` +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = "~> 3.27" + } + } + + required_version = ">= 0.14.9" +} + +provider "aws" { + profile = "default" + region = "us-west-2" +} + +resource "aws_instance" "90daysofdevops" { + ami = "ami-830c94e3" + instance_type = "t2.micro" + availability_zone = "us-west-2a" + user_data = <<-EOF + #! /bin/bash + sudo yum update + sudo yum install -y httpd + sudo systemctl start httpd + sudo systemctl enable httpd + echo " +

Deployed via Terraform

+ +" | sudo tee /var/www/html/index.html + EOF + tags = { + Name = "Created by Terraform" + + + tags = { + Name = "ExampleAppServerInstance" + } +} +``` +The above code will go and deploy a very simple web server as an ec2 instance in AWS, the great thing about this and any other configuration like this is that we can repeat this and we will get the same output every single time. Other than the chance that I have messed up the code there is no human interaction with the above. + +We can take a look at a super simple example, one that you will likely never use but let's humour it anyway. Like with all good scripting and programming language we should start with a hello-world scenario. + +``` +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" +} +``` +You will find this file in the IAC folder under hello-world, but out of the box this is not going to simply work there are some commans we need to run in order to use our terraform code. + +In your terminal navigate to your folder where the main.tf has been created, this could be from this repository or you could create a new one using the code above. + +When in that folder we are going to run `terraform init` + +We need to perform this on any directory where we have or before we run any terraform code. Initialising a configuration directory downloads and installs the providers defined in the configuration, in this case we have no providers but in the example above this would download the aws provider for this configuration. + +![](Images/Day58_IAC1.png) + +The next command will be `terraform plan` + +The `terraform plan` command creates an execution plan, which lets you preview the changes that Terraform plans to make to your infrastructure. + +You can simply see below that with our hello-world example we are going to see an output if this was an AWS ec2 instance we would see all the steps that we will be creating. + +![](Images/Day58_IAC2.png) + +At this point we have initialised our repository and we have our providers downloaded where required, we have run a test walkthrough to make sure this is what we want to see so now we can run and deploy our code. + +`terraform apply` allows us to do this there is a built in safety measure to this command and this will again give you a plan view on what is going to happen which warrants a response from you to say yes to continue. + +![](Images/Day58_IAC3.png) + +When we type in yes to the enter a value, and our code is deployed. Obviously not that exciting but you can see we have the output that we defined in our code. + +![](Images/Day58_IAC4.png) + +Now we have not deployed anything, we have not added, changed or destroyed anything but if we did then we would see that indicated also in the above. If however we had deployed something and we wanted to get rid of everything we deployed we can use the `terraform destroy` command. Again this has that safety where you have to type yes although you can use `--auto-approve` on the end of your `apply` and `destroy` commands to bypass that manual intervention. But I would advise only using this shortcut when in learning and testing as everything will dissappear sometimes faster than it was built. + +From this there are really 4 commands we have covered from the Terraform CLI. + +- `terraform init` = get your project folder ready with providers +- `terraform plan` = show what is going to be created, changed during the next command based on our code. +- `terraform apply` = will go and deploy the resources defined in our code. +- `terraform destroy` = will destroy the resources we have created in our project + +We also covered two important aspects of our code files. + +- providers = how does terraform speak to the end platform via APIs +- resources = what it is we want to deploy with code + +Another thing to note when running `terraform init` take a look at the tree on the folder before and after to see what happens and where we store providers and modules. + +### Terraform state + +We also need to be aware of the state file that is created also inside our directory and for this hello world example our state file is simple. This is a JSON file which is the representation of the world according to Terraform. The state will happily show off your sensitive data so be careful and as a best practice put your `.tfstate` files in your `.gitignore` folder before uploading to GitHub. + +By default the state file as you can see lives inside the same directory as your project code, but it can also be stored remotely as an option. In a production environment this is likely going to be a shared location such as an S3 bucket. + +Another option could be Terraform Cloud, this is a paid for managed service. (Free up to 5 users) + +The pros for storing state in a remote location is that we get: + +- Sensitive data encrypted +- Collaboration +- Automation +- However it could bring increase complexity + +``` +{ + "version": 4, + "terraform_version": "1.1.6", + "serial": 1, + "lineage": "a74296e7-670d-0cbb-a048-f332696ca850", + "outputs": { + "hello_world": { + "value": "Hello, 90DaysOfDevOps from Terraform", + "type": "string" + } + }, + "resources": [] +} +``` + + +## Resources +I have listed a lot of resources down below and I think this topic has been covered so many times out there, If you have additional resources be sure to raise a PR with your resources and I will be happy to review and add them to the list. + +- [What is Infrastructure as Code? Difference of Infrastructure as Code Tools ](https://www.youtube.com/watch?v=POPP2WTJ8es) +- [Terraform Tutorial | Terraform Course Overview 2021](https://www.youtube.com/watch?v=m3cKkYXl-8o) +- [Terraform explained in 15 mins | Terraform Tutorial for Beginners ](https://www.youtube.com/watch?v=l5k1ai_GBDE) +- [Terraform Course - From BEGINNER to PRO!](https://www.youtube.com/watch?v=7xngnjfIlK4&list=WL&index=141&t=16s) +- [HashiCorp Terraform Associate Certification Course](https://www.youtube.com/watch?v=V4waklkBC38&list=WL&index=55&t=111s) +- [Terraform Full Course for Beginners](https://www.youtube.com/watch?v=EJ3N-hhiWv0&list=WL&index=39&t=27s) +- [KodeKloud - Terraform for DevOps Beginners + Labs: Complete Step by Step Guide!](https://www.youtube.com/watch?v=YcJ9IeukJL8&list=WL&index=16&t=11s) +- [Terraform Simple Projects](https://terraform.joshuajebaraj.com/) +- [Terraform Tutorial - The Best Project Ideas](https://www.youtube.com/watch?v=oA-pPa0vfks) +- [Awesome Terraform](https://github.com/shuaibiyy/awesome-terraform) + +See you on [Day 59](day59.md) diff --git a/zh_tw/Days/day59.md b/zh_tw/Days/day59.md new file mode 100644 index 000000000..90d7365e1 --- /dev/null +++ b/zh_tw/Days/day59.md @@ -0,0 +1,129 @@ +--- +title: '#90DaysOfDevOps - Create a VM with Terraform & Variables - Day 59' +published: false +description: 90DaysOfDevOps - Create a VM with Terraform & Variables +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049051 +--- +## Create a VM with Terraform & Variables + +In this session we are going to be creating a VM or two VMs using terraform inside VirtualBox. This is not the normal, VirtualBox is a workstation virtualisation option and really this would not be a use case for Terraform but I am currently 36,000ft in the air and as much as I have deployed public cloud resources this high in the clouds it is much faster to do this locally on my laptop. + +Purely demo purpose but the concept is the same we are going to have our desired state configuration code and then we are going to run that against the virtualbox provider. In the past we have used vagrant here and I covered off the differences between vagrant and terraform at the beginning of the section. + +### Create virtual machine in VirtualBox + +The first thing we are going to do is create a new folder called virtualbox, we can then create a virtualbox.tf file and this is going to be where we define our resources. The code below which can be found in the VirtualBox folder as virtualbox.tf this is going to create 2 VMs in Virtualbox. + +You can find more about the community virtualbox provider [here](https://registry.terraform.io/providers/terra-farm/virtualbox/latest/docs/resources/vm) + +``` +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) +} + +``` + +Now that we have our code defined we can now perform the `terraform init` on our folder to download the provider for virtualbox. + +![](Images/Day59_IAC1.png) + + +Obviously you will also need to have virtualbox installed on your system as well. We can then next run `terraform plan` to see what our code will create for us. Followed by `terraform apply` the below image shows your completed process. + +![](Images/Day59_IAC2.png) + +In Virtualbox you will now see your 2 virtual machines. + +![](Images/Day59_IAC3.png) + +### Change configuration + +Lets add another node to our deployment. We can simply change the count line to show our newly desired number of nodes. When we run our `terraform apply` it will look something like below. + +![](Images/Day59_IAC4.png) + +Once complete in virtualbox you can see we now have 3 nodes up and running. + +![](Images/Day59_IAC5.png) + +When we are finished we can clear this up using the `terraform destroy` and our machines will be removed. + +![](Images/Day59_IAC6.png) + +### Variables & Outputs + +We did mention outputs when we ran our hello-world example in the last session. But we can get into more detail here. + +But there are many other variables that we can use here as well, there are also a few different ways in which we can define variables. + +- We can manually enter our variables with the `terraform plan` or `terraform apply` command + +- We can define them in the .tf file within the block + +- We can use environment variables within our system using `TF_VAR_NAME` as the format. + +- My preference is to use a terraform.tfvars file in our project folder. + +- There is an *auto.tfvars file option + +- or we can define when we run the `terraform plan` or `terraform apply` with the `-var` or `-var-file`. + +Starting from the bottom moving up would be the order in which the variables are defined. + +We have also mentioned that the state file will contain sensitive information. We can define our sensitive information as a variable and we can define this as being sensitive. + +``` +variable "some resource" { + description = "something important" + type: string + sensitive = true + +} +``` + +## Resources +I have listed a lot of resources down below and I think this topic has been covered so many times out there, If you have additional resources be sure to raise a PR with your resources and I will be happy to review and add them to the list. + +- [What is Infrastructure as Code? Difference of Infrastructure as Code Tools ](https://www.youtube.com/watch?v=POPP2WTJ8es) +- [Terraform Tutorial | Terraform Course Overview 2021](https://www.youtube.com/watch?v=m3cKkYXl-8o) +- [Terraform explained in 15 mins | Terraform Tutorial for Beginners ](https://www.youtube.com/watch?v=l5k1ai_GBDE) +- [Terraform Course - From BEGINNER to PRO!](https://www.youtube.com/watch?v=7xngnjfIlK4&list=WL&index=141&t=16s) +- [HashiCorp Terraform Associate Certification Course](https://www.youtube.com/watch?v=V4waklkBC38&list=WL&index=55&t=111s) +- [Terraform Full Course for Beginners](https://www.youtube.com/watch?v=EJ3N-hhiWv0&list=WL&index=39&t=27s) +- [KodeKloud - Terraform for DevOps Beginners + Labs: Complete Step by Step Guide!](https://www.youtube.com/watch?v=YcJ9IeukJL8&list=WL&index=16&t=11s) +- [Terraform Simple Projects](https://terraform.joshuajebaraj.com/) +- [Terraform Tutorial - The Best Project Ideas](https://www.youtube.com/watch?v=oA-pPa0vfks) +- [Awesome Terraform](https://github.com/shuaibiyy/awesome-terraform) + +See you on [Day 60](day60.md) diff --git a/zh_tw/Days/day60.md b/zh_tw/Days/day60.md new file mode 100644 index 000000000..b88ace47c --- /dev/null +++ b/zh_tw/Days/day60.md @@ -0,0 +1,193 @@ +--- +title: '#90DaysOfDevOps - Docker Containers, Provisioners & Modules - Day 60' +published: false +description: '90DaysOfDevOps - Docker Containers, Provisioners & Modules' +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049052 +--- +## Docker Containers, Provisioners & Modules + +On [Day 59](day59.md) we provisioned a virtual machine using Terraform to our local FREE virtualbox environment. In this section we are going to be deploy a Docker container with some configuration to our local Docker environment. + +### Docker Demo + +First up we are going to use the code block below, the outcome of the below is that we would like a simple web app to be deployed into docker and to publish this so that it is available to our network. We will be using nginx and we will make this available externally on our laptop over localhost and port 8000. We are using a docker provider from the community and you can see the docker image we are using also stated in our configuration. + +``` +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 + } +} +``` + +The first task is to use `terraform init` command to download the provider to our local machine. + +![](Images/Day60_IAC1.png) + +We then run our `terraform apply` followed by `docker ps` and you can see we have a running container. + +![](Images/Day60_IAC2.png) + +If we then open a browser we can navigate to http://localhost:8000/ and you will see we have access to our NGINX container. + +![](Images/Day60_IAC3.png) + +You can find out more information on the [Docker Provider](https://registry.terraform.io/providers/kreuzwerker/docker/latest/docs/resources/container) + +The above is a very simple demo of what can be done with Terraform plus Docker and how we can now manage this under the Terraform state. We covered docker compose in the containers section and there is a little crossover in a way between this, infrastructure as code as well as then Kubernetes. + +For the purpose of showing this and how Terraform can handle a little more complexity, we are going to take the docker compose file for wordpress and mysql that we created with docker compose and we will put this to Terraform. You can find the [docker-wordpress.tf](/Days/IaC/Docker-Wordpress/docker-wordpress.tf) + +``` +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}" + } +} +``` + +We again put this is in a new folder and then run our `terraform init` command to pull down our provisioners required. + +![](Images/Day60_IAC4.png) + +We then run our `terraform apply` command and then take a look at our docker ps output we should see our newly created containers. + +![](Images/Day60_IAC5.png) + +We can then also navigate to our WordPress front end. Much like when we went through this process with docker-compose in the containers section we can now run through the setup and our wordpress posts would be living in our MySQL database. + +![](Images/Day60_IAC6.png) + +Obviously now we have covered containers and Kubernetes in some detail, we probably know that this is ok for testing but if you were really going to be running a website you would not do this with containers alone and you would look at using Kubernetes to achieve this, Next up we are going to take a look using Terraform with Kubernetes. + + +### Provisioners + +Provisioners are there so that if something cannot be declartive we have a way in which to parse this to our deployment. + +If you have no other alternative and adding this complexity to your code is the place to go then you can do this by running something similar to the following block of code. + +``` +resource "docker_container" "db" { + # ... + + provisioner "local-exec" { + command = "echo The server's IP address is ${self.private_ip}" + } +} + +``` + +The remote-exec provisioner invokes a script on a remote resource after it is created. This could be used for something OS specific or it could be used to wrap in a configuration management tool. Although notice that we have some of these covered in their own provisioners. + +[More details on provisioners](https://www.terraform.io/language/resources/provisioners/syntax) + +- file +- local-exec +- remote-exec +- vendor + - ansible + - chef + - puppet + +### Modules + +Modules are containers for multiple resources that are used together. A module consists of a collection of .tf files in the same directory. + +Modules are a good way to separate your infrastructure resources as well as being able to pull in third party modules that have already been created so you do not have to re invent the wheel. + +For example if we wanted to use the same project to build out some VMs, VPCs, Security Groups and then also a Kubernetes cluster we would likely want to split our resources out into modules to better define our resources and where they are grouped. + +Another benefit to modules is that you can take these modules and use them on other projects or share publicly to help the community. + +We are breaking down our infrastructure into components, components are known here as modules. + +## Resources +I have listed a lot of resources down below and I think this topic has been covered so many times out there, If you have additional resources be sure to raise a PR with your resources and I will be happy to review and add them to the list. + +- [What is Infrastructure as Code? Difference of Infrastructure as Code Tools ](https://www.youtube.com/watch?v=POPP2WTJ8es) +- [Terraform Tutorial | Terraform Course Overview 2021](https://www.youtube.com/watch?v=m3cKkYXl-8o) +- [Terraform explained in 15 mins | Terraform Tutorial for Beginners ](https://www.youtube.com/watch?v=l5k1ai_GBDE) +- [Terraform Course - From BEGINNER to PRO!](https://www.youtube.com/watch?v=7xngnjfIlK4&list=WL&index=141&t=16s) +- [HashiCorp Terraform Associate Certification Course](https://www.youtube.com/watch?v=V4waklkBC38&list=WL&index=55&t=111s) +- [Terraform Full Course for Beginners](https://www.youtube.com/watch?v=EJ3N-hhiWv0&list=WL&index=39&t=27s) +- [KodeKloud - Terraform for DevOps Beginners + Labs: Complete Step by Step Guide!](https://www.youtube.com/watch?v=YcJ9IeukJL8&list=WL&index=16&t=11s) +- [Terraform Simple Projects](https://terraform.joshuajebaraj.com/) +- [Terraform Tutorial - The Best Project Ideas](https://www.youtube.com/watch?v=oA-pPa0vfks) +- [Awesome Terraform](https://github.com/shuaibiyy/awesome-terraform) + +See you on [Day 61](day61.md) diff --git a/zh_tw/Days/day61.md b/zh_tw/Days/day61.md new file mode 100644 index 000000000..4b159328e --- /dev/null +++ b/zh_tw/Days/day61.md @@ -0,0 +1,167 @@ +--- +title: '#90DaysOfDevOps - Kubernetes & Multiple Environments - Day 61' +published: false +description: 90DaysOfDevOps - Kubernetes & Multiple Environments +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048743 +--- +## Kubernetes & Multiple Environments + +So far during this section on Infrastructure as code we have looked at deploying virtual machines albeit to virtualbox but the premise is the same really as we define in code what we want our virtual machine to look like and then we deploy. The same for Docker containers and in this session we are going to take a look at how Terraform can be used to interact with resources supported by Kubernetes. + +I have been using Terraform to deploy my Kubernetes clusters for demo purposes across the 3 main cloud providers and you can find the repository [tf_k8deploy](https://github.com/MichaelCade/tf_k8deploy) + +However you can also use Terraform to interact with objects within the Kubernetes cluster, this could be using the [Kubernetes provider](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs) or it could be using the [Helm provider](https://registry.terraform.io/providers/hashicorp/helm/latest) to manage your chart deployments. + +Now we could use `kubectl` as we have showed in previous sections. But there are some benefits to using Terraform in your Kubernetes environment. + +- Unified workflow - if you have used terraform to deploy your clusters, you could use the same workflow and tool to deploy within your Kubernetes clusters + +- Lifecycle management - Terraform is not just a provisioning tool, its going to enable change, updates and deletions. + +### Simple Kubernetes Demo + +Much like the demo we created in the last session we can now deploy nginx into our Kubernetes cluster, I will be using minikube here again for demo purposes. We create our Kubernetes.tf file and you can find this in the [folder](/Days/IaC/Kubernetes/kubernetes.tf) + +In that file we are going to define our Kubernetes provider, we are going to point to our kubeconfig file, create a namespace called nginx, then we will create a deployment which contains 2 replicas and finally a service. + +``` +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 + } + } +} +``` + +The first thing we have to do in our new project folder is run the `terraform init` command. + +![](Images/Day61_IAC1.png) + +And then before we run the `terraform apply` command, let me show you that we have no namespaces. + +![](Images/Day61_IAC2.png) + +When we run our apply command this is going to create those 3 new resources, namespace, deployment and service within our Kubernetes cluster. + +![](Images/Day61_IAC3.png) + +We can now take a look at the deployed resources within our cluster. + +![](Images/Day61_IAC4.png) + +Now because we are using minikube and you will have seen in the previous section this has its own limitations when we try and play with the docker networking for ingress. But if we simply issue the `kubectl port-forward -n nginx svc/nginx 30201:80` command and open a browser to http://localhost:30201/ we should see our NGINX page. + +![](Images/Day61_IAC5.png) + +If you want to try out more detailed demos with Terraform and Kubernetes then the [HashiCorp Learn site](https://learn.hashicorp.com/tutorials/terraform/kubernetes-provider) is fantastic to run through. + + +### Multiple Environments + +If we wanted to take any of the demos we have ran through but wanted to now have specific production, staging and development environments looking exactly the same and leveraging this code there are two approaches to achieve this with Terraform + +- `terraform workspaces` - multiple named sections within a single backend + +- file structure - Directory layout provides separation, modules provide reuse. + +Each of the above do have their pros and cons though. + +### terraform workspaces + +Pros +- Easy to get started +- Convenient terraform.workspace expression +- Minimises code duplication + +Cons +- Prone to human error (we were trying to eliminate this by using TF) +- State stored within the same backend +- Codebase doesnt unambiguously show deployment configurations. + +### File Structure + +Pros +- Isolation of backends + - improved security + - decreased potential for human error +- Codebase fully represents deployed state + +Cons +- Multiple terraform apply required to provision environments +- More code duplication, but can be minimised with modules. + +## Resources +I have listed a lot of resources down below and I think this topic has been covered so many times out there, If you have additional resources be sure to raise a PR with your resources and I will be happy to review and add them to the list. + +- [What is Infrastructure as Code? Difference of Infrastructure as Code Tools ](https://www.youtube.com/watch?v=POPP2WTJ8es) +- [Terraform Tutorial | Terraform Course Overview 2021](https://www.youtube.com/watch?v=m3cKkYXl-8o) +- [Terraform explained in 15 mins | Terraform Tutorial for Beginners ](https://www.youtube.com/watch?v=l5k1ai_GBDE) +- [Terraform Course - From BEGINNER to PRO!](https://www.youtube.com/watch?v=7xngnjfIlK4&list=WL&index=141&t=16s) +- [HashiCorp Terraform Associate Certification Course](https://www.youtube.com/watch?v=V4waklkBC38&list=WL&index=55&t=111s) +- [Terraform Full Course for Beginners](https://www.youtube.com/watch?v=EJ3N-hhiWv0&list=WL&index=39&t=27s) +- [KodeKloud - Terraform for DevOps Beginners + Labs: Complete Step by Step Guide!](https://www.youtube.com/watch?v=YcJ9IeukJL8&list=WL&index=16&t=11s) +- [Terraform Simple Projects](https://terraform.joshuajebaraj.com/) +- [Terraform Tutorial - The Best Project Ideas](https://www.youtube.com/watch?v=oA-pPa0vfks) +- [Awesome Terraform](https://github.com/shuaibiyy/awesome-terraform) + +See you on [Day 62](day62.md) diff --git a/zh_tw/Days/day62.md b/zh_tw/Days/day62.md new file mode 100644 index 000000000..61ead6767 --- /dev/null +++ b/zh_tw/Days/day62.md @@ -0,0 +1,109 @@ +--- +title: '#90DaysOfDevOps - Testing, Tools & Alternatives - Day 62' +published: false +description: '90DaysOfDevOps - Testing, Tools & Alternatives' +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049053 +--- +## Testing, Tools & Alternatives + +As we close out this section on Infrastructure as Code we must mention about testing our code, the various different tools available and then some of the alternatives to Terraform to achieve this. As I said at the start of the section my focus was on Terraform because it is firstly free and open source, secondly it is cross platform and agnostic to environments. But there are also alternatives out there that should be considered but the overall goal is to make people aware that this is the way to deploy your infrastructure. + +### Code Rot + +The first area I want to cover in this session is code rot, unlike application code, infrastructure as code might get used and then not for a very long time. Lets take the example that we are going to be using Terraform to deploy our VM environment in AWS, perfect and it works first time and we have our environment, but this environment doesnt change too often so the code gets left the state possibly or hopefully stored in a central location but the code does not change. + +What if something changes in the infrastructure? But it is done out of band, or other things change in our environment. + +- Out of band changes +- Unpinned versions +- Deprecated dependancies +- Unapplied changes + +### Testing + +Another huge area that follows on from code rot and in general is the ability to test your IaC and make sure all areas are working the way they should. + +First up there are some built in testing commands we can take a look at: + +| Command | Description | +| --------------------- | ------------------------------------------------------------------------------------------ | +| `terraform fmt` | Rewrite Terraform configuration files to a canonical format and style. | +| `terraform validate` | Validates the configuration files in a directory, referring only to the configuration | +| `terraform plan` | Creates an execution plan, which lets you preview the changes that Terraform plans to make | +| Custom validation | Validation of your input variables to ensure they match what you would expect them to be | + +We also have some testing tools available external to Terraform: + +- [tflint](https://github.com/terraform-linters/tflint) + + - Find possible errors + - Warn about deprecated syntax, unused declarations. + - Enforce best practices, naming conventions. + +Scanning tools + +- [checkov](https://www.checkov.io/) - scans cloud infrastructure configurations to find misconfigurations before they're deployed. +- [tfsec](https://aquasecurity.github.io/tfsec/v1.4.2/) - static analysis security scanner for your Terraform code. +- [terrascan](https://github.com/accurics/terrascan) - static code analyzer for Infrastructure as Code. +- [terraform-compliance](https://terraform-compliance.com/) - a lightweight, security and compliance focused test framework against terraform to enable negative testing capability for your infrastructure-as-code. +- [snyk](https://docs.snyk.io/products/snyk-infrastructure-as-code/scan-terraform-files/scan-and-fix-security-issues-in-terraform-files) - scans your Terraform code for misconfigurations and security issues + +Managed Cloud offering + +- [Terraform Sentinel](https://www.terraform.io/cloud-docs/sentinel) - embedded policy-as-code framework integrated with the HashiCorp Enterprise products. It enables fine-grained, logic-based policy decisions, and can be extended to use information from external sources. + +Automated testing + +- [Terratest](https://terratest.gruntwork.io/) - Terratest is a Go library that provides patterns and helper functions for testing infrastructure + +Worth a mention + +- [Terraform Cloud](https://cloud.hashicorp.com/products/terraform) - Terraform Cloud is HashiCorp’s managed service offering. It eliminates the need for unnecessary tooling and documentation for practitioners, teams, and organizations to use Terraform in production. + +- [Terragrunt](https://terragrunt.gruntwork.io/) - Terragrunt is a thin wrapper that provides extra tools for keeping your configurations DRY, working with multiple Terraform modules, and managing remote state. + +- [Atlantis](https://www.runatlantis.io/) - Terraform Pull Request Automation + +### Alternatives + +We mentioned on Day 57 when we started this section that there were some alternatives and I very much plan on exploring this following on from this challenge. + +| Cloud Specific | Cloud Agnostic | +| ------------------------------- | -------------- | +| AWS CloudFormation | Terraform | +| Azure Resource Manager | Pulumi | +| Google Cloud Deployment Manager | | + +I have used AWS CloudFormation probably the most out of the above list and native to AWS but I have not used the others other than Terraform. As you can imagine the cloud specific versions are very good in that particular cloud but if you have multiple cloud environments then you are going to struggle to migrate those configurations or you are going to have multiple management planes for your IaC efforts. + +I think an interesting next step for me is to take some time and learn more about [Pulumi](https://www.pulumi.com/) + +From a Pulumi comparison on their site + +*"Both Terraform and Pulumi offer a desired state infrastructure as code model where the code represents the desired infrastructure state and the deployment engine compares this desired state with the stack’s current state and determines what resources need to be created, updated or deleted."* + +The biggest difference I can see is that unlike the HashiCorp Configuration Language (HCL) Pulumi allows for general purpose languages like Python, TypeScript, JavaScript, Go and .NET. + +A quick overview [Introduction to Pulumi: Modern Infrastructure as Code](https://www.youtube.com/watch?v=QfJTJs24-JM) I like the ease and choices you are prompted with and want to get into this a little more. + +This wraps up the Infrastructure as code section and next we move on to that little bit of overlap with configuration management and in particular as we get past the big picture of configuration management we are going to be using Ansible for some of those tasks and demos. + +## Resources +I have listed a lot of resources down below and I think this topic has been covered so many times out there, If you have additional resources be sure to raise a PR with your resources and I will be happy to review and add them to the list. + +- [What is Infrastructure as Code? Difference of Infrastructure as Code Tools ](https://www.youtube.com/watch?v=POPP2WTJ8es) +- [Terraform Tutorial | Terraform Course Overview 2021](https://www.youtube.com/watch?v=m3cKkYXl-8o) +- [Terraform explained in 15 mins | Terraform Tutorial for Beginners ](https://www.youtube.com/watch?v=l5k1ai_GBDE) +- [Terraform Course - From BEGINNER to PRO!](https://www.youtube.com/watch?v=7xngnjfIlK4&list=WL&index=141&t=16s) +- [HashiCorp Terraform Associate Certification Course](https://www.youtube.com/watch?v=V4waklkBC38&list=WL&index=55&t=111s) +- [Terraform Full Course for Beginners](https://www.youtube.com/watch?v=EJ3N-hhiWv0&list=WL&index=39&t=27s) +- [KodeKloud - Terraform for DevOps Beginners + Labs: Complete Step by Step Guide!](https://www.youtube.com/watch?v=YcJ9IeukJL8&list=WL&index=16&t=11s) +- [Terraform Simple Projects](https://terraform.joshuajebaraj.com/) +- [Terraform Tutorial - The Best Project Ideas](https://www.youtube.com/watch?v=oA-pPa0vfks) +- [Awesome Terraform](https://github.com/shuaibiyy/awesome-terraform) +- [Pulumi - IaC in your favorite programming language!](https://www.youtube.com/watch?v=vIjeiDcsR3Q&t=51s) + +See you on [Day 63](day63.md) diff --git a/zh_tw/Days/day63.md b/zh_tw/Days/day63.md new file mode 100644 index 000000000..ab498820e --- /dev/null +++ b/zh_tw/Days/day63.md @@ -0,0 +1,108 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: Configuration Management - Day 63' +published: false +description: 90DaysOfDevOps - The Big Picture Configuration Management +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048711 +--- +## The Big Picture: Configuration Management + +Coming straight off the back of the section covering Infrastructure as Code, there is likely going to be some crossover as we talk about Configuration Management or Application Configuration Management. + +Configuration Management is the process of maintaining applications, systems and servers in a desired state. The overlap with Infrastructure as code is that IaC is going to make sure your infrastructure is at the desired state but after that especially terraform is not going to look after the desired state of your OS settings or Application and that is where Configuration Management tools come in. Making sure that system and applications perform the way it is expected as changes occur over Deane. + +Configuration management keeps you from making small or large changes that go undocumented. + +### Scenario: Why would you want to use Configuration Management + +The scenario or why you'd want to use Configuration Management, meet Dean he's our system administrator and Dean is a happy camper pretty and +working on all of the systems in his environement. + +What happens if their system fails, if there's a fire, a server goes down well? Dean knows exactly what to do he can fix that fire really easily the problems become really difficult for Dean however if multiple servers start failing particularly when you have large and expanding environments, this is why Dean really needs to have a configuration management tool. Configuration Management tools can help make Dean look like a rockstar, all he has to do is configure the right codes that allows him to push out the instructions on how to set up each of the servers quickly effectively and at scale. + + +### Configuration Management tools + +There are a variety of configuration management tools available, and each has specific features that make it better for some situations than others. + +![](Images/Day63_config1.png) + +At this stage we will take a quick fire look at the options in the above picture before making our choice on which one we will use and why. + +- **Chef** + - Chef ensures configuration is applied consistently in every environment, at any scale with infrastructure automation. + - Chef is an open-source tool developed by OpsCode written in Ruby and Erlang. + - Chef is best suited for organisations that have a hetrogenous infrastructure and are looking for mature solutions. + - Recipes and Cookbooks determine the configuration code for your systems. + - Pro - A large collection of recipes are available + - Pro - Integrates well with Git which provides a strong version control + - Con - Steep learning curve, a considerable amount of time required. + - Con - The main server doesn't have much control. + - Architecture - Server / Clients + - Ease of setup - Moderate + - Language - Procedural - Specify how to do a task + +- **Puppet** + - Puppet is a configuration management tool that supports automatic deployment. + - Puppet is built in Ruby and uses DSL for writing manifests. + - Puppet also works well with hetrogenous infrastructure where the focus is on scalability. + - Pro - Large community for support. + - Pro - Well developed reporting mechanism. + - Con - Advance tasks require knowledge of Ruby language. + - Con - The main server doesn't have much control. + - Architecture - Server / Clients + - Ease of setup - Moderate + - Language - Declartive - Specify only what to do + +- **Ansible** + - Ansible is an IT automation tool that automates configuration management, cloud provisioning, deployment and orchestration. + - The core of Ansible playbooks are written in YAML. (Should really do a section on YAML as we have seen this a few times) + - Ansible works well when there are environments that focus on getting things up and running fast. + - Works on playbooks which provide instructions to your servers. + - Pro - No agents needed on remote nodes. + - Pro - YAML is easy to learn. + - Con - Performance speed is often less than other tools (Faster than Dean doing it himself manually) + - Con - YAML not as powerful as Ruby but less of a learning curve. + - Architecture - Client Only + - Ease of setup - Very Easy + - Language - Procedural - Specify how to do a task + +- **SaltStack** + - SaltStack is a CLI based tool that automates configuration management and remote execution. + - SaltStack is Python based whilst the instructions are written in YAML or its own DSL. + - Perfect for environments with scalability and resilience as the priority. + - Pro - Easy to use when up and running + - Pro - Good reporting mechanism + - Con - Setup phase is tough + - Con - New web ui which is much less developed than the others. + - Architecture - Server / Clients + - Ease of setup - Moderate + - Language - Declartive - Specify only what to do + +### Ansible vs Terraform + +The tool that we will be using for this section is going to be Ansible. (Easy to use and easier language basics required.) + +I think it is important to touch on some of the differences between Ansible and Terraform before we look into the tooling a little further. + +| |Ansible |Terraform | +| ------------- | ------------------------------------------------------------- | ----------------------------------------------------------------- | +|Type |Ansible is a configuration management tool |Terraform is a an orchestration tool | +|Infrastructure |Ansible provides support for mutable infrastructure |Terraform provides support for immutable infrastructure | +|Language |Ansible follows procedural language |Terraform follows a declartive language | +|Provisioning |Ansible provides partial provisioning (VM, Network, Storage) |Terraform provides extensive provisioning (VM, Network, Storage) | +|Packaging |Ansible provides complete support for packaging & templating |Terraform provides partial support for packaging & templating | +|Lifecycle Mgmt |Ansible does not have lifecycle management |Terraform is heavily dependant on lifecycle and state mgmt | + + + +## Resources + +- [What is Ansible](https://www.youtube.com/watch?v=1id6ERvfozo) +- [Ansible 101 - Episode 1 - Introduction to Ansible](https://www.youtube.com/watch?v=goclfp6a2IQ) +- [NetworkChuck - You need to learn Ansible right now!](https://www.youtube.com/watch?v=5hycyr-8EKs&t=955s) + + +See you on [Day 64](day64.md) diff --git a/zh_tw/Days/day64.md b/zh_tw/Days/day64.md new file mode 100644 index 000000000..db3aeff6c --- /dev/null +++ b/zh_tw/Days/day64.md @@ -0,0 +1,88 @@ +--- +title: '#90DaysOfDevOps - Ansible: Getting Started - Day 64' +published: false +description: '90DaysOfDevOps - Ansible: Getting Started' +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048765 +--- +## Ansible: Getting Started + +We covered a little what Ansible is in the [big picture session yesterday](day63.md) But we are going to get started with a little more information on top of that here. Firstly Ansible comes from RedHat. Secondly it is agentles, connects via SSH and runs commands. Thirdly it is cross platform (Linux & macOS, WSL2) and open-source (there is also a paid for enterprise option) Ansible pushes configuration vs other models. + +### Ansible Installation +As you might imagine, RedHat and the Ansible team have done a fantastic job around documenting Ansible. This generally starts with the installation steps which you can find [here](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html) Remember we said that Ansible is an agentless automation tool, the tool is deployed to a system referred to as a "Control Node" from this control node is manages machines and other devices (possibly network) over SSH. + +It does state in the above linked documentation that the Windows OS cannot be used as the control node. + +For my control node and for at least this demo I am going to use the Linux VM we created way back in the [Linux section](day20.md) as my control node. + +This system was running Ubuntu and the installation steps simply needs the following commands. + +``` +sudo apt update +sudo apt install software-properties-common +sudo add-apt-repository --yes --update ppa:ansible/ansible +sudo apt install ansible +``` +Now we should have ansible installed on our control node, you can check this by running `ansible --version` and you should see something similar to this below. + +![](Images/Day64_config1.png) + +Before we then start to look at controlling other nodes in our environment, we can also check functionality of ansible by running a command against our local machine `ansible localhost -m ping` will use an [Ansible Module](https://docs.ansible.com/ansible/2.9/user_guide/modules_intro.html) and this is a quick way to perform a single task across many different systems. I mean it is not much fun with just the local host but imagine you wanted to get something or make sure all your systems were up and you had 1000+ servers and devices. + +![](Images/Day64_config2.png) + +Or an actual real life use for a module might be something like `ansible webservers --m service -a "name=httpd state=started"` this will tell us if all of our webservers have the httpd service running. I have glossed over the webservers term used in that command. + +### hosts + +The way I used localhost above to run a simple ping module against the system, I cannot specify another machine on my network, for example in the environment I am using my Windows host where VirtualBox is running has a network adapter with the IP 10.0.0.1 but you can see below that I can reach by pinging but I cannot use ansible to perform that task. + +![](Images/Day64_config3.png) + +In order for us to specify our hosts or the nodes that we want to automate with these tasks we need to define them. We can define them by navigating to the /etc/ansible directory on your system. + +![](Images/Day64_config4.png) + +The file we want to edit is the hosts file, using a text editor we can jump in and define our hosts. The hosts file contains lots of great instructions on how to use and modify the file. We want to scroll down to the bottom and we are going to create a new group called [windows] and we are going to add our `10.0.0.1` IP address for that host. Save the file. + +![](Images/Day64_config5.png) + +However remember I said you will need to have SSH available to enable ansible to connect to your system. As you can see below when I run `ansible windows -m ping` we get an unreachable because things failed to connect via SSH. + +![](Images/Day64_config6.png) + +I have now also started adding some additional hosts to our inventory, another name for this file as this is where you are going to define all of your devices, could be network devices, switches and routers for example also would be added here and grouped. In our hosts file though I have also added in my credentials for accessing the linux group of systems. + +![](Images/Day64_config7.png) + +Now if we run `ansible linux -m ping` we get a success as per below. + +![](Images/Day64_config8.png) + +We then have the node requirements, these are the target systems you wish to automate the configuration on. We are not installing anything for Ansible on these (I mean we might be installing software but there is no client from Ansible we need) Ansible will make a connection over SSH and send anything over SFTP. (If you so desire though and you have SSH configured you could use SCP vs SFTP.) + +### Ansible Commands + +You saw that we were able to run `ansible linux -m ping` against our Linux machine and get a response, basically with Ansible we have the ability to run many adhoc commands. But obviously you can run this against a group of systems and get that information back. [ad hoc commands](https://docs.ansible.com/ansible/latest/user_guide/intro_adhoc.html) + +If you find yourself repeating commands or even worse you are having to log into individual systems to run these commands then Ansible can help there. For example the simple command below would give us the output of all the operating system details for all of the systems we add to our linux group. +`ansible linux -a "cat /etc/os-release"` + +Other use cases could be to reboot systems, copy files, manage packers and users. You can also couple ad hoc commands with Ansible modules. + +Ad hoc commands use a declarative model, calculating and executing the actions required to reach a specified final state. They achieve a form of idempotence by checking the current state before they begin and doing nothing unless the current state is different from the specified final state. + +## Resources + +- [What is Ansible](https://www.youtube.com/watch?v=1id6ERvfozo) +- [Ansible 101 - Episode 1 - Introduction to Ansible](https://www.youtube.com/watch?v=goclfp6a2IQ) +- [NetworkChuck - You need to learn Ansible right now!](https://www.youtube.com/watch?v=5hycyr-8EKs&t=955s) + + +See you on [Day 65](day65.md) + + + diff --git a/zh_tw/Days/day65.md b/zh_tw/Days/day65.md new file mode 100644 index 000000000..2478bf429 --- /dev/null +++ b/zh_tw/Days/day65.md @@ -0,0 +1,275 @@ +--- +title: '#90DaysOfDevOps - Ansible Playbooks - Day 65' +published: false +description: 90DaysOfDevOps - Ansible Playbooks +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049054 +--- +### Ansible Playbooks + +In this section we will take a look at the main reason that I can see at least for Ansible, I mean it is great to take a single command and hit many different servers to perform simple commands such as rebooting a long list of servers and saving the hassle of having to connect to each one individually. + +But what about actually taking a bare operating system and declaring the software and services we want running on that system and making sure they are all running in that desired state. + +This is where ansible playbooks come in. A playbook enables us to take our group of servers and perform configuration and installation tasks against that group. + +### Playbook format + +Playbook > Plays > Tasks + +For anyone that comes from a sports background you may have come across the term playbook, a playbook then tells the team how you will play made up of various plays and tasks, if we think of the plays as the set pieces within the sport or game, and the tasks are associated to each play, you can have multiple tasks to make up a play and in the playbook you may have multiple different plays. + +These playbooks are written in YAML (YAML ain’t markup language) you will find a lot of the sections we have covered so far especially Containers and Kubernetes to feature YAML formatted configuration files. + +Let’s take a look at a simple playbook called playbook.yml. + +``` +- name: Simple Play + hosts: localhost + connection: local + tasks: + - name: Ping me + ping: + - name: print os + debug: + msg: "{{ ansible_os_family }}" +``` + +You will find the above file [simple_play](days/../Configmgmt/simple_play.yml). If we then use the `ansible-playbook simple_play.yml` command we will walk through the following steps. + +![](Images/Day65_config1.png) + +You can see the first task of "gathering steps" happened, but we didn't trigger or ask for this? This module is automatically called by playbooks to gather useful variables about remote hosts. [ansible.builtin.setup](https://docs.ansible.com/ansible/latest/collections/ansible/builtin/setup_module.html) + +Our second task was to set a ping, this is not an ICMP ping but a python script to report back `pong` on successful connectivity to remote or localhost. [ansible.builtin.ping](https://docs.ansible.com/ansible/latest/collections/ansible/builtin/ping_module.html) + +Then our third or really our second defined task as the first one will run unless you disable was the printing of a message telling us our OS. In this task we are using conditionals, we could run this playbook against all different types of operating systems and this would return the OS name. We are simply messaging this output for ease but we could add a task to say something like: + +``` +tasks: + - name: "shut down Debian flavoured systems" + command: /sbin/shutdown -t now + when: ansible_os_family == "Debian" +``` + +### Vagrant to setup our environment + +We are going to use Vagrant to set up our node environment, I am going to keep this at a reasonable 4 nodes but you can hopefully see that this could easily be 300 or 3000 and this is the power of Ansible and other configuration management tools to be able to configure your servers. + +You can find this file located here ([Vagrantfile](/Days/Configmgmt/Vagrantfile)) + +``` +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 +``` + +Use the `vagrant up` command to spin these machines up in VirtualBox, You might be able to add more memory and you might also want to define a different private_network address for each machine but this works in my environment. Remember our control box is the Ubuntu desktop we deployed during the Linux section. + +If you are resource contrained then you can also run `vagrant up web01 web02` to only bring up the webservers that we are using here. + +### Ansible host configuration + +Now that we have our environment ready, we can check ansible and for this we will use our Ubuntu desktop (You could use this but you can equally use any Linux based machine on your network accessible to the network below) as our control, let’s also add the new nodes to our group in the ansible hosts file, you can think of this file as an inventory, an alternative to this could be another inventory file that is called on as part of your ansible command with `-i filename` this could be useful vs using the host file as you can have different files for different environments, maybe production, test and staging. Because we are using the default hosts file we do not need to specify as this would be the default used. + +I have added the following to the default hosts file. + +``` +[control] +ansible-control + +[proxy] +loadbalancer + +[webservers] +web01 +web02 + +[database] +db01 + +``` +![](Images/Day65_config2.png) + +Before moving on we want to make sure we can run a command against our nodes, let’s run `ansible nodes -m command -a hostname` this simple command will test that we have connectivity and report back our host names. + +Also note that I have added these nodes and IPs to my Ubuntu control node within the /etc/hosts file to ensure connectivity. We might also need to do SSH configuration for each node from the Ubuntu box. + +``` +192.168.169.140 ansible-control +192.168.169.130 db01 +192.168.169.131 web01 +192.168.169.132 web02 +192.168.169.133 loadbalancer +``` +![](Images/Day65_config3.png) + +At this stage we want to run through setting up SSH keys between your control and your server nodes. This is what we are going to do next, another way here could be to add variables into your hosts file to give username and password. I would advise against this as this is never going to be a best practice. + +To set up SSH and share amongst your nodes, follow the steps below, you will be prompted for passwords (`vagrant`) and you will likely need to hit `y` a few times to accept. + +`ssh-keygen` + +![](Images/Day65_config5.png) + +`ssh-copy-id localhost` + +![](Images/Day65_config6.png) + +Now if you have all of your VMs switched on then you can run the `ssh-copy-id web01 && ssh-copy-id web02 && ssh-copy-id loadbalancer && ssh-copy-id db01` this will prompt you for your password in our case our password is `vagrant` + +I am not running all my VMs and only running the webservers so I issued `ssh-copy-id web01 && ssh-copy-id web02` + +![](Images/Day65_config7.png) + +Before running any playbooks I like to make sure that I have simple connectivity with my groups so I have ran `ansible webservers -m ping` to test connectivity. + +![](Images/Day65_config4.png) + + +### Our First "real" Ansible Playbook +Our first Ansible playbook is going to configure our webservers, we have grouped these in our hosts file under the grouping [webservers]. + +Before we run our playbook we can confirm that our web01 and web02 do not have apache installed. The top of the screenshot below is showing you the folder and file layout I have created within my ansible control to run this playbook, we have the `playbook1.yml`, then in the templates folder we have the `index.html.j2` and `ports.conf.j2` files. You can find these files in the folder listed above in the repository. + +Then we SSH into web01 to check if we have apache installed? + +![](Images/Day65_config8.png) + +You can see from the above that we have not got apache installed on our web01 so we can fix this by running the below playbook. + + +``` +- 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 +``` +Breaking down the above playbook: + +- `- hosts: webservers` this is saying that our group to run this playbook on is a group called webservers +- `become: yes` means that our user running the playbook will become root on our remote systems. You will be prompted for the root password. +- We then have `vars` and this defines some environment variables we want throughout our webservers. + +Following this we start our tasks, + +- Task 1 is to ensure that apache is running the latest version +- Task 2 is writing the ports.conf file from our source found in the templates folder. +- Task 3 is creating a basic index.html file +- Task 4 is making sure apache is running + +Finally we have a handlers section, [Handlers: Running operations on change](https://docs.ansible.com/ansible/latest/user_guide/playbooks_handlers.html) + +"Sometimes you want a task to run only when a change is made on a machine. For example, you may want to restart a service if a task updates the configuration of that service, but not if the configuration is unchanged. Ansible uses handlers to address this use case. Handlers are tasks that only run when notified. Each handler should have a globally unique name." + +At this stage you might be thinking but we have deployed 5 VMs (including our Ubuntu Desktop machine which is acting as our Ansible Control) The other systems will come into play during the rest of the section. + +### Run our Playbook + +We are now ready to run our playbook against our nodes. To run our playbook we can use the `ansible-playbook playbook1.yml` We have defined our hosts that our playbook will run against within the playbook and this will walkthrough our tasks that we have defined. + +When the command is complete we get an output showing our plays and tasks, this may take some time you can see from the below image that this took a while to go and install our desired state. + +![](Images/Day65_config9.png) + +We can then double check this by jumping into a node and checking we have the installed software on our node. + +![](Images/Day65_config10.png) + +Just to round this out as we have deployed two standalone webservers with the above we can now navigate to the respective IPs that we defined and get our new website. + +![](Images/Day65_config11.png) + +We are going to build on this playbook as we move through the rest of this section. I am interested as well in taking our Ubuntu desktop and seeing if we could actually bootstrap our applications and configuration using Ansible so we might also touch this. You saw that we can use local host in our commands we can also run playbooks against our local host for example. + +Another thing to add here is that we are only really working with Ubuntu VMs but Ansible is agnostic to the target systems. The alternatives that we have previously mentioned to manage your systems could be server by server (not scalable when you get over a large amount of servers, plus a pain even with 3 nodes) we can also use shell scripting which again we covered in the Linux section but these nodes are potentially different so yes it can be done but then someone needs to maintain and manage those scripts. Ansible is free and hits the easy button vs having to have a specialised script. + +## Resources + +- [What is Ansible](https://www.youtube.com/watch?v=1id6ERvfozo) +- [Ansible 101 - Episode 1 - Introduction to Ansible](https://www.youtube.com/watch?v=goclfp6a2IQ) +- [NetworkChuck - You need to learn Ansible right now!](https://www.youtube.com/watch?v=5hycyr-8EKs&t=955s) +- [Your complete guide to Ansible](https://www.youtube.com/playlist?list=PLnFWJCugpwfzTlIJ-JtuATD2MBBD7_m3u) + +This final playlist listed above is where a lot of the code and ideas came from for this section, a great resource and walkthrough in video format. + +See you on [Day 66](day66.md) diff --git a/zh_tw/Days/day66.md b/zh_tw/Days/day66.md new file mode 100644 index 000000000..3a23c3b19 --- /dev/null +++ b/zh_tw/Days/day66.md @@ -0,0 +1,129 @@ +--- +title: '#90DaysOfDevOps - Ansible Playbooks Continued... - Day 66' +published: false +description: 90DaysOfDevOps - Ansible Playbooks Continued... +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048712 +--- +## Ansible Playbooks Continued... + +In our last section we started with creating our small lab using a Vagrantfile to deploy 4 machines and we used our Linux machine we created in that section as our ansible control system. + +We also ran through a few scenarios of playbooks and at the end we had a playbook that made our web01 and web02 individual webservers. + +![](Images/Day66_config1.png) + +### Keeping things tidy + +Before we get into further automation and deployment we should cover the ability to keep our playbook lean and tidy and how we can separate our taks and handlers into subfolders. + +we are basically going to copy our tasks into their own file within a folder. + +``` +- 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 +``` + +and the same for the handlers. + +``` +- name: restart apache + service: + name: apache2 + state: restarted +``` + +then within our playbook now named `playbook2.yml` we point to these files. All of which can be found at [ansible-scenario2](Days/../Configmgmt/ansible-scenario2/) + +You can test this on your control machine. If you have copied the files from the repository you should have noticed something changed in the "write a basic index.html file" + +![](Images/Day66_config2.png) + +Let's find out what simple change I made. Using `curl web01:8000` + +![](Images/Day66_config3.png) + +We have just tidied up our playbook and started to separate areas that could make a playbook very overwhelming at scale. + +### Roles and Ansible Galaxy + +At the moment we have deployed 4 VMs and we have configured 2 of these VMs as our webservers but we have some more specific functions namely, a database server and a loadbalancer or proxy. In order for us to do this and tidy up our repository we can use roles within Ansible. + +To do this we will use the `ansible-galaxy` command which is there to manage ansible roles in shared repositories. + +![](Images/Day66_config4.png) + +We are going to use `ansible-galaxy` to create a role for apache2 which is where we are going to put our specifics for our webservers. + +![](Images/Day66_config5.png) + +The above command `ansible-galaxy init roles/apache2` will create the folder structure that we have shown above. Our next step is we need to move our existing tasks and templates to the relevant folders in the new structure. + +![](Images/Day66_config6.png) + +Copy and paste is easy to move those files but we also need to make a change to the tasks/main.yml so that we point this to the apache2_install.yml. + +We also need to change our playbook now to refer to our new role. In the playbook1.yml and playbook2.yml we determine our tasks and handlers in different ways as we changed these between the two versions. We need to change our playbook to use this role as per below: + +``` +- hosts: webservers + become: yes + vars: + http_port: 8000 + https_port: 4443 + html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!" + roles: + - apache2 +``` + +![](Images/Day66_config7.png) + +We can now run our playbook again this time with the new playbook name `ansible-playbook playbook3.yml` you will notice the depreciation, we can fix that next. + +![](Images/Day66_config8.png) + +Ok, the depreciation although our playbook ran we should fix our ways now, in order to do that I have changed the include option in the tasks/main.yml to now be import_tasks as per below. + +![](Images/Day66_config9.png) + +You can find these files in the [ansible-scenario3](Days/Configmgmt/ansible-scenario3) + +We are also going to create a few more roles whilst using `ansible-galaxy` we are going to create: + +- common = for all of our servers (`ansible-galaxy init roles/common`) +- nginx = for our loadbalancer (`ansible-galaxy init roles/nginx`) + +![](Images/Day66_config10.png) + +I am going to leave this one here and in the next session we will start working on those other nodes we have deployed but have not done anything with yet. + +## Resources + +- [What is Ansible](https://www.youtube.com/watch?v=1id6ERvfozo) +- [Ansible 101 - Episode 1 - Introduction to Ansible](https://www.youtube.com/watch?v=goclfp6a2IQ) +- [NetworkChuck - You need to learn Ansible right now!](https://www.youtube.com/watch?v=5hycyr-8EKs&t=955s) +- [Your complete guide to Ansible](https://www.youtube.com/playlist?list=PLnFWJCugpwfzTlIJ-JtuATD2MBBD7_m3u) + +This final playlist listed above is where a lot of the code and ideas came from for this section, a great resource and walkthrough in video format. + +See you on [Day 67](day67.md) diff --git a/zh_tw/Days/day67.md b/zh_tw/Days/day67.md new file mode 100644 index 000000000..545a85363 --- /dev/null +++ b/zh_tw/Days/day67.md @@ -0,0 +1,119 @@ +--- +title: '#90DaysOfDevOps - Using Roles & Deploying a Loadbalancer - Day 67' +published: false +description: 90DaysOfDevOps - Using Roles & Deploying a Loadbalancer +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048713 +--- +## Using Roles & Deploying a Loadbalancer + +In the last session we covered roles and used the `ansible-galaxy` command to help create our folder structures for some roles that we are going to use. We finished up with a much tidier working repository for our configuration code as everything is hidden away in our role folders. + +However we have only used the apache2 role and have a working playbook3.yaml to handle our webservers. + +At this point if you have only used `vagrant up web01 web02` now is the time to run `vagrant up loadbalancer` this will bring up another Ubuntu system that we will use as our Load Balancer/Proxy. + +We have already defined this new machine in our hosts file, but we do not have the ssh key configured until it is available, so we need to also run `ssh-copy-id loadbalancer` when the system is up and ready. + +### Common role +I created at the end of yesterdays session the role of `common`, common will be used across all of our servers where as the other roles are specific to use cases, now the applications I am going to install as common as spurious and I cannot see many reasons for this to be the case but it shows the objective. In our common role folder structure, navigate to tasks folder and you will have a main.yml. In this yaml we need to point this to our install_tools.yml file and we do this by adding a line `- import_tasks: install_tools.yml` this used to be `include` but this is going to be depreciated soon enough so we are using import_tasks. + +``` +- name: "Install Common packages" + apt: name={{ item }} state=latest + with_items: + - neofetch + - tree + - figlet +``` + +In our playbook we then add in the common role for each host block. + +``` +- hosts: webservers + become: yes + vars: + http_port: 8000 + https_port: 4443 + html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!" + roles: + - common + - apache2 +``` + +### nginx + +The next phase is for us to install and configure nginx on our loadbalancer vm. Like the common folder structure, we have the nginx based on the last session. + +First of all we are going to add a host block to our playbook. This block will include our common role and then our new nginx role. + +The playbook can be found here. [playbook4.yml](Days/../Configmgmt/ansible-scenario4/playbook4.yml) + +``` +- 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 +``` + +In order for this to mean anything, we have to define our tasks that we wish to run, in the same way we will modify the main.yml in tasks to point to two files this time, one for installation and one for configuration. + +There are some other files that I have modified based on the outcome we desire, take a look in the folder [ansible-scenario4](Days/Configmgmt/ansible-scenario4) for all the files changed. You should check the folders tasks, handlers and templates in the nginx folder and you will find those additional changes and files. + +### Run the updated playbook + +Since yesterday we have added the common role which will now install some packages on our system and then we have also added our nginx role which includes installation and configuration. + +Let's run our playbook4.yml using the `ansible-playbook playbook4.yml` + +![](Images/Day67_config1.png) + +Now that we have our webservers and loadbalancer configured we should now be able to go to http://192.168.169.134/ which is the IP address of our loadbalancer. + +![](Images/Day67_config2.png) + +If you are following along and you do not have this state then it could be down to the server IP addresses you have in your environment. The file can be found in `templates\mysite.j2` and looks similar to the below: You would need to update with your webserver IP addresses. + +``` + upstream webservers { + server 192.168.169.131:8000; + server 192.168.169.132:8000; + } + + server { + listen 80; + + location / { + proxy_pass http://webservers; + } + } +``` +I am pretty confident that what we have installed is all good but let's use an adhoc command using ansible to check these common tools installation. + +`ansible loadbalancer -m command -a neofetch` + +![](Images/Day67_config3.png) + +## Resources + +- [What is Ansible](https://www.youtube.com/watch?v=1id6ERvfozo) +- [Ansible 101 - Episode 1 - Introduction to Ansible](https://www.youtube.com/watch?v=goclfp6a2IQ) +- [NetworkChuck - You need to learn Ansible right now!](https://www.youtube.com/watch?v=5hycyr-8EKs&t=955s) +- [Your complete guide to Ansible](https://www.youtube.com/playlist?list=PLnFWJCugpwfzTlIJ-JtuATD2MBBD7_m3u) + +This final playlist listed above is where a lot of the code and ideas came from for this section, a great resource and walkthrough in video format. + +See you on [Day 68](day68.md) diff --git a/zh_tw/Days/day68.md b/zh_tw/Days/day68.md new file mode 100644 index 000000000..c25eb5ced --- /dev/null +++ b/zh_tw/Days/day68.md @@ -0,0 +1,348 @@ +--- +title: '#90DaysOfDevOps - Tags, Variables, Inventory & Database Server config - Day 68' +published: false +description: '90DaysOfDevOps - Tags, Variables, Inventory & Database Server config' +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048780 +--- +## Tags, Variables, Inventory & Database Server config + +### Tags + +As we left our playbook in the session yesterday we would need to run every tasks and play within that playbook. Which means we would have to run the webservers and loadbalancer plays and tasks to completion. + +However tags can enable us to seperate these out if we want. This could be an effcient move if we have extra large and long playbooks in our environments. + +In our playbook file, in this case we are using [ansible-scenario5](Configmgmt/ansible-scenario5/playbook5.yml) + +``` +- 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 +``` +We can then confirm this by using the `ansible-playbook playbook5.yml --list-tags` and the list tags is going to outline the tags we have defined in our playbook. + +![](Images/Day68_config1.png) + +Now if we wanted to target just the proxy we could do this by running `ansible-playbook playbook5.yml --tags proxy` and this will as you can see below only run the playbook against the proxy. + +![](Images/Day68_config2.png) + +tags can be added at the task level as well so we can get really granular on where and what you want to happen. It could be application focused tags, we could go through tasks for example and tag our tasks based on installation, configuration or removal. Another very useful tag you can use is + +`tag: always` this will ensure no matter what --tags you are using in your command if something is tagged with the always value then it will always be ran when you run the ansible-playbook command. + +With tags we can also bundle multiple tags together and if we choose to run `ansible-playbook playbook5.yml --tags proxy,web` this will run all of the items with those tags. Obviously in our instance that would mean the same as running the the playbook but if we had multiple other plays then this would make sense. + +You can also define more than one tag. + +### Variables + +There are two main types of variables within Ansible. + +- User created +- Ansible Facts + +### Ansible Facts + +Each time we have ran our playbooks, we have had a task that we have not defined called "Gathering facts" we can use these variables or facts to make things happen with our automation tasks. + +![](Images/Day68_config3.png) + +If we were to run the following `ansible proxy -m setup` command we should see a lot of output in JSON format. There is going to be a lot of information on your terminal though to really use this so we would like to output this to a file using `ansible proxy -m setup >> facts.json` you can see this file in this repository, [ansible-scenario5](Configmgmt/ansible-scenario5/facts.json) + +![](Images/Day68_config4.png) + +If you open this file you can see all sorts of information for our command. We can get our IP addresses, architecture, bios version. A lot of useful information if we want to leverage this and use this in our playbooks. + +An idea would be to potentially use one of these variables within our nginx template mysite.j2 where we hard coded the IP addresses of our webservers. You can do this by creating a for loop in your mysite.j2 and this is going to cycle through the group [webservers] this enables us to have more than our 2 webservers automatically and dynamically created or added to this load balancer configuration. + +``` +#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; + } + } +``` +The outcome of the above will look the same as it does right now but if we added more webservers or removed one this would dynamically change the proxy configuration. For this to work you will need to have name resolution configured. + +### User created + +User created variables are what we have created ourselves. If you take a look in our playbook you will see we have `vars:` and then a list of 3 variables we are using there. + +``` +- hosts: webservers + become: yes + vars: + http_port: 8000 + https_port: 4443 + html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 68!" + roles: + - common + - apache2 + tags: web + +- hosts: proxy + become: yes + roles: + - common + - nginx + tags: proxy +``` + +We can however keep our playbook clear of variables by moving them to their own file. We are going to do this but we will move into the [ansible-scenario6](Configmgmt/ansible-scenario6) folder. In the root of that folder we are going to create a group_vars folder. We are then going to create another folder called all (all groups are going to get these variables). In there we will create a file called `common_variables.yml` and we will copy our variables from our playbook into this file. Removing them from the playbook along with vars: as well. + +``` +http_port: 8000 +https_port: 4443 +html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 68!" +``` + +Because we are associating this as a global variable we could also add in our NTP and DNS servers here as well. The variables are set from the folder structure that we have created. You can see below how clean our Playbook now looks. + +``` +- hosts: webservers + become: yes + roles: + - common + - apache2 + tags: web + +- hosts: proxy + become: yes + roles: + - common + - nginx + tags: proxy +``` + +One of those variables was the http_port, we can use this again in our for loop within the mysite.j2 as per below: + +``` +#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; + } + } +``` + +We can also define an ansible fact in our roles/apache2/templates/index.html.j2 file so that we can understand which webserver we are on. + +``` + + +

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

+ + +``` +The results of running the `ansible-playbook playbook6.yml` command with our variable changes means that when we hit our loadbalancer you can see that we hit either of the webservers we have in our group. + +![](Images/Day68_config5.png) + +We could also add a folder called host_vars and create a web01.yml and have a specific message or change what that looks like on a per host basis if we wish. + +### Inventory Files + +So far we have used the default hosts file in the /etc/ansible folder to determine our hosts. We could however have different files for different environments, for example production and staging. I am not going to create more environments. But we are able to create our own host files. + +We can create multiple files for our different inventory of servers and nodes. We would call these using `ansible-playbook -i dev playbook.yml` you can also define variables within your hosts file and then print that out or leverage that variable somewhere else in your playbooks for example in the example and training course I am following along to below they have added the environment variable created in the host file to the loadbalancer web page template to show the environment as part of the web page message. + +### Deploying our Database server + +We still have one more machine we have not powered up yet and configured. We can do this using `vagrant up db01` from where our Vagrantfile is located. When this is up and accessible we then need to make sure the SSH key is copied over using `ssh-copy-id db01` so that we can access. + +We are going to be working from the [ansible-scenario7](Configmgmt/ansible-scenario7) folder + +Let's then use `ansible-galaxy init roles/mysql` to create a new folder structure for a new role called "mysql" + +In our playbook we are going to add a new play block for the database configuration. We have our group database defined in our /etc/ansible/hosts file. We then instruct our database group to have the role common and a new role called mysql which we created in the previous step. We are also tagging our database group with database, this means as we discussed earlier we can choose to only run against these tags if we wish. + +``` +- 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 +``` + +Within our roles folder structure you will now have the tree automatically created, we need to populate the following: + +Handlers - main.yml + +``` +# handlers file for roles/mysql +- name: restart mysql + service: + name: mysql + state: restarted +``` + +Tasks - install_mysql.yml, main.yml & setup_mysql.yml + +install_mysql.yml - this task is going to be there to install mysql and ensure that the service is running. + +``` +- 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 +``` + +main.yml is a pointer file that will suggest that we import_tasks from these files. + +``` +# tasks file for roles/mysql +- import_tasks: install_mysql.yml +- import_tasks: setup_mysql.yml +``` + +setup_mysql.yml - This task will create our database and database user. + +``` +- 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' + host: '%' + state: present + +- name: Create a new database with name '90daysofdevops' + mysql_db: + login_user: "{{ mysql_user_name }}" + login_password: "{{ mysql_user_password }}" + name: "{{ db_name }}" + state: present +``` + +You can see from the above we are using some variables to determine some of our configuration such as passwords, usernames and databases, this is all stored in our group_vars/all/common_variables.yml file. + +``` +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 +``` +We also have the my.cnf.j2 file in the templates folder, which looks like below: + +``` +[mysql] +bind-address = 0.0.0.0 +``` + +### Running the playbook + +Now we have our VM up and running and we have our configuration files in place, we are now ready to run our playbook which will include everything we have done before if we run the following `ansible-playbook playbook7.yml` or we could choose to just deploy to our database group with the `ansible-playbook playbook7.yml --tags database` command, which will just run our new configuration files. + +I ran only against the database tag but I stumbled across an error. This error tells me that we do not have pip3 (Python) installed. We can fix this by adding this to our common tasks and install + +![](Images/Day68_config6.png) + +We fixed the above and ran the playbook again and we have a successful change. + +![](Images/Day68_config7.png) + +We should probably make sure that everything is how we want it to be on our newly configured db01 server. We can do this from our control node using the `ssh db01` command. + +To connect to mySQL I used `sudo /usr/bin/mysql -u root -p` and gave the vagrant password for root at the prompt. + +When we have connected let's first make sure we have our user created called devops. `select user, host from mysql.user;` + +![](Images/Day68_config8.png) + +Now we can issue the `SHOW DATABASES;` command to see our new database that has also been created. + +![](Images/Day68_config9.png) + +I actually used root to connect but we could also now log in with our devops account in the same way using `sudo /usr/bin/mysql -u devops -p` but the password here is DevOps90. + +One thing I have found that in our `setup_mysql.yml` I had to add the line `login_unix_socket: /var/run/mysqld/mysqld.sock` in order to successfully connect to my db01 mysql instance and now everytime I run this it reports a change when creating the user, any suggestions would be greatly appreciated. + +## Resources + +- [What is Ansible](https://www.youtube.com/watch?v=1id6ERvfozo) +- [Ansible 101 - Episode 1 - Introduction to Ansible](https://www.youtube.com/watch?v=goclfp6a2IQ) +- [NetworkChuck - You need to learn Ansible right now!](https://www.youtube.com/watch?v=5hycyr-8EKs&t=955s) +- [Your complete guide to Ansible](https://www.youtube.com/playlist?list=PLnFWJCugpwfzTlIJ-JtuATD2MBBD7_m3u) + +This final playlist listed above is where a lot of the code and ideas came from for this section, a great resource and walkthrough in video format. + +See you on [Day 69](day69.md) diff --git a/zh_tw/Days/day69.md b/zh_tw/Days/day69.md new file mode 100644 index 000000000..700f4b198 --- /dev/null +++ b/zh_tw/Days/day69.md @@ -0,0 +1,142 @@ +--- +title: '#90DaysOfDevOps - All other things Ansible - Automation Controller (Tower), AWX, Vault - Day 69' +published: false +description: '90DaysOfDevOps - All other things Ansible - Automation Controller (Tower), AWX, Vault' +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048714 +--- +## All other things Ansible - Automation Controller (Tower), AWX, Vault + +Rounding out the section on Configuration Management I wanted to have a look into the other areas that you might come across when dealing with Ansible. + +There are a lot of products that make up the Ansible Automation platform. + +Red Hat Ansible Automation Platform is a foundation for building and operating automation across an organization. The platform includes all the tools needed to implement enterprise-wide automation. + +![](Images/Day69_config1.png) + +I will try and cover some of these in this post. But for more information then the official Red Hat Ansible site is going to have lots more information. [Ansible.com](https://www.ansible.com/?hsLang=en-us) + +### Ansible Automation Controller | AWX + +I have bundled these two together because the Automation Controller and AWX are very similar in what they offer. + +The AWX project or AWX for short is an open-source community project, sponsored by Red Hat that enables you to better control your Ansible projects within your environments. AWX is the upstream project from which the automation controller component is derived. + +If you are looking for an enterprise solution then you will be looking for the Automation Controller or you might have previously heard this as Ansible Tower. The Ansible Automation Controller is the control plane for the Ansible Automation Platform. + +Both AWX and the Automation Controller bring the following features above everything else we have covered in this section thus far. + +- User Interface +- Role Based Access Control +- Workflows +- CI/CD integration + +The Automation Controller is the enterprise offering where you pay for your support. + +We are going to take a look at deploying AWX within our minikube Kubernetes environment. + +### Deploying Ansible AWX + +AWX does not need to be deployed to a Kubernetes cluster, the [github](https://github.com/ansible/awx) for AWX from ansible will give you that detail. However starting in version 18.0, the AWX Operator is the preferred way to install AWX. + +First of all we need a minikube cluster. We can do this if you followed along during the Kubernetes section by creating a new minikube cluster with the `minikube start --cpus=4 --memory=6g --addons=ingress` command. + +![](Images/Day69_config2.png) + +The official [Ansible AWX Operator](https://github.com/ansible/awx-operator) can be found here. As stated in the install instructions you should clone this repository and then run through the deployment. + +I forked the repo above and then ran `git clone https://github.com/MichaelCade/awx-operator.git` my advice is you do the same and do not use my repository as I might change things or it might not be there. + +In the cloned repository you will find a awx-demo.yml file we need to change `NodePort` for `ClusterIP` as per below: + +``` +--- +apiVersion: awx.ansible.com/v1beta1 +kind: AWX +metadata: + name: awx-demo +spec: + service_type: ClusterIP +``` + +The next step is to define our namespace where we will be deploying the awx operator, using the `export NAMESPACE=awx` command then followed by `make deploy` we will start the deployment. + +![](Images/Day69_config3.png) + +In checking we have our new namespace and we have our awx-operator-controller pod running in our namespace. `kubectl get pods -n awx` + +![](Images/Day69_config4.png) + +Within the cloned repository you will find a file called awx-demo.yml we now want to deploy this into our Kubernetes cluser and our awx namespace. `kubectl create -f awx-demo.yml -n awx` + +![](Images/Day69_config5.png) + +You can keep an eye on the progress with `kubectl get pods -n awx -w` which will keep a visual watch on what is happening. + +You should have something that resembles the image you see below when everything is running. + +![](Images/Day69_config6.png) + +Now we should be able to access our awx deployment after running in a new terminal `minikube service awx-demo-service --url -n $NAMESPACE` to expose this through the minikube ingress. + +![](Images/Day69_config7.png) + +If we then open a browser to that address [] you can see we are prompted for username and password. + +![](Images/Day69_config8.png) + +The username by default is admin, to get the password we can run the following command to get this `kubectl get secret awx-demo-admin-password -o jsonpath="{.data.password}" -n awx| base64 --decode` + +![](Images/Day69_config9.png) + +Obviously this then gives you a UI to manage your playbook and configuration management tasks in a centralised location, it also allows you as a team to work together vs what we have been doing so far here where we have been running from one ansible control station. + +This is another one of those areas where you could probably go and spend another length of time walking through the capabilities within this tool. + +I will call out a great resource from Jeff Geerling, which goes into more detail on using Ansible AWX. [Ansible 101 - Episode 10 - Ansible Tower and AWX](https://www.youtube.com/watch?v=iKmY4jEiy_A&t=752s) + +In this video he also goes into great detail on the differences between Automation Controller (Previously Ansible Tower) and Ansible AWX (Free and Open Source). + +### Ansible Vault + +`ansible-vault` allows us to encrypt and decrypt Ansible data files. Throughout this section we have skipped over and we have put some of our sensitive information in plain text. + +Built in to the Ansible binary is `ansible-vault` which allows us to mask away this sensitive information. + +![](Images/Day69_config10.png) + +Secrets Management has progressively become another area in which more time should have been spent alongside tools such as HashiCorp Vault or the AWS Key Management Service. I will mark this as an area to dive deeper into. + +I am going to link a great resource and demo to run through from Jeff Geerling again [Ansible 101 - Episode 6 - Ansible Vault and Roles](https://www.youtube.com/watch?v=JFweg2dUvqM) + +### Ansible Galaxy (Docs) + +Now, we have already used `ansible-galaxy` to create some of our roles and file structure for our demo project. But we also have [Ansible Galaxy documentation](https://galaxy.ansible.com/docs/) + +"Galaxy is a hub for finding and sharing Ansible content." + +### Ansible Testing + +- [Ansible Molecule](https://molecule.readthedocs.io/en/latest/) - Molecule project is designed to aid in the development and testing of Ansible roles + +- [Ansible Lint](https://ansible-lint.readthedocs.io/en/latest/) - CLI tool for linting playbooks, roles and collections + +### Other Resource + +- [Ansible Documentation](https://docs.ansible.com/ansible/latest/index.html) + +## Resources + +- [What is Ansible](https://www.youtube.com/watch?v=1id6ERvfozo) +- [Ansible 101 - Episode 1 - Introduction to Ansible](https://www.youtube.com/watch?v=goclfp6a2IQ) +- [NetworkChuck - You need to learn Ansible right now!](https://www.youtube.com/watch?v=5hycyr-8EKs&t=955s) +- [Your complete guide to Ansible](https://www.youtube.com/playlist?list=PLnFWJCugpwfzTlIJ-JtuATD2MBBD7_m3u) + +This final playlist listed above is where a lot of the code and ideas came from for this section, a great resource and walkthrough in video format. + +This post wraps up our look into configuration management, we next move into CI/CD Pipelines and some of the tools and processes that we might see and use out there to achieve this workflow for our application development and release. + +See you on [Day 70](day70.md) diff --git a/zh_tw/Days/day70.md b/zh_tw/Days/day70.md new file mode 100644 index 000000000..1ae8bbeaf --- /dev/null +++ b/zh_tw/Days/day70.md @@ -0,0 +1,121 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: CI/CD Pipelines - Day 70' +published: false +description: 90DaysOfDevOps - The Big Picture CI/CD Pipelines +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048836 +--- +## The Big Picture: CI/CD Pipelines + +A CI/CD (Continous Integration/Continous Deployment) Pipeline implementation is the backbone of the modern DevOps environment. + +It bridges the gap between development and operations by automating the build, test and deployment of applications. + +We covered a lot of this Continous mantra in the opening section of the challenge. But to reiterate: + +Continous Integration (CI) is a more modern software development practice in which incremental code changes are made more frequently and reliabily. Automated build and test workflow steps triggered by Contininous Integration ensures that code changes being merged into the repository are reliable. + +That code / Application is then delivered quickly and seamlessly as part of the Continuous Deployment process. + +### The importance of CI/CD? + +- Ship software quickly and efficiently +- Facilitates an effective process for getting applications to market as fast as possible +- A continous flow of bug fixes and new features without waiting months or years for version releases. + +The ability for developers to make small impactful changes regular means we get faster fixes and more features quicker. + +### Ok, so what does this mean? + +On [Day 5](day5.md) we covered a lot of the theory behind DevOps and as already mentioned here already that the CI/CD Pipeline is the backbone of the modern DevOps environment. + +![DevOps](Images/Day5_DevOps8.png) + +I want to reiterate some of the key points on this image above, now that we are a little further into our journey of learning the fundamentals of DevOps. + +We are referring to the software development life cycle (SDLC). + +The steps are usually written out within an infinity loop since it's a cycle that repeats forever. + +The steps in the cycle are, developers write the **code** then it gets **built** or all compiled together then it's **tested** for bugs then it's **deployed** into production where it's used (**Operated**) by end users or customers then we **monitor** and collect feedback and finally we **plan** improvements around that feedback **rinse and repeat**. + +### Let's go a little deeper into CI/CD + +### CI + +CI is a development practice that requires developers to integrate code into a shared repository several times a day. + +When the code is written and pushed to a repository like github or gitlab that's where the magic begins. + +![](Images/Day70_CICD1.png) + +The code is verified by an automated build which allows teams or the project owner to detect any problems early. + +![](Images/Day70_CICD2.png) + +From there the code is analysed and given a series of automated tests three examples are + +- Unit testing this tests the individual units of the source code +- Validation testing this makes sure that the software satisfies or fits the intended use +- Format testing this checks for syntax and other formatting errors + +These tests are created as a workflow and then are run every time you push to the master branch so pretty much every major development team has some sort of CI/CD workflow and remember on a development team the new code could be coming in from teams all over the world at different times of the day from developers working on all sorts of different projects it's more efficient to build an automated workflow of tests that make sure that everyone is on the same page before the code is accepted. It would take much longer for a human to do this each time. + +![](Images/Day70_CICD3.png) + +Once we have our tests complete and they are successful then we can compile and send to our repository. For example I am using Docker Hub but this could be anywhere that then gets leveraged for the CD aspect of the pipeline. + +![](Images/Day70_CICD4.png) + +So this process is obviously very much down to the software development process, we are creating our application, adding, fixing bugs etc and then updating our source control and versioning that whilst also testing. + +Moving onto the next phase is the CD element which in fact more and more is what we generally see from any off the shelf software, I would argue that we will see a trend that if we get our software from a vendor such as Oracle or Microsoft we will consume that from a Docker Hub type repository and then we would use our CD pipelines to deploy that into our environments. + +### CD + +Now we have our tested version of our code and we are ready to deploy out into the wild and like I say, the Software vendor will run through this stage but I strongly believe this is how we will all deploy the off the shelf software we require in the future. + +It is now time to release our code into an environment. This is going to include Production but also likely other environments as well such as staging. + +![](Images/Day70_CICD5.png) + +Our next step at least on Day 1 of v1 of the software deployment is we need to make sure we are pulling the correct code base to the correct environment. This could be pulling elements from the software repository (DockerHub) but it is more than likely that we are also pulling additional configuration from maybe another code repository, the configuration for the application for example. In the diagram below we are pulling the latest release of the software from DockerHub and then we are releasing this to our environments whilst possibly picking up configuration from a Git repository. Our CD tool is performing this and pushing everything to our environment. + +It is most likely that this is not done at the same time. i.e we would go to a staging environment run against this with our own configuration make sure things are correct and this could be a manual step for testing or it could again be automated (lets go with automated) before then allowing this code to be deployed into production. + +![](Images/Day70_CICD6.png) + +Then after this when v2 of the application comes out we rinse and repeat the steps this time we ensure our application + configuration is deployed to staging ensure everything is good and then we deploy to production. + +### Why use CI/CD? + +I think we have probably covered the benefits a number of time but it is because it automates things that otherwise would have to be done manually it finds small problems before it sneaks into the main codebase, you can probably imagine that if you push bad code out to your customers then you're going to have a bad time! + +It also helps to prevent something that we call technical debt which is the idea that since the main code repos are constantly being built upon over time then a shortcut fix taken on day one is now an exponentially more expensive fix years later because now that band-aid of a fix would be so deeply intertwined and baked into all the code bases and logic. + +### Tooling + +Like with other sections we are going to get hands on with some of the tools that achieve the CI/CD pipeline process. + +I think it is also important to note that not all tools have to do both CI and CD, We will take a look at ArgoCD which you guessed it is great at the CD element of deploying our software to a Kubernetes cluster. But something like Jenkins can work across many different platforms. + +My plan is to look at the following: + +- Jenkins +- ArgoCD +- GitHub Actions + +## Resources + +- [Jenkins is the way to build, test, deploy](https://youtu.be/_MXtbjwsz3A) +- [Jenkins.io](https://www.jenkins.io/) +- [ArgoCD](https://argo-cd.readthedocs.io/en/stable/) +- [ArgoCD Tutorial for Beginners](https://www.youtube.com/watch?v=MeU5_k9ssrs) +- [What is Jenkins?](https://www.youtube.com/watch?v=LFDrDnKPOTg) +- [Complete Jenkins Tutorial](https://www.youtube.com/watch?v=nCKxl7Q_20I&t=3s) +- [GitHub Actions](https://www.youtube.com/watch?v=R8_veQiYBjI) +- [GitHub Actions CI/CD](https://www.youtube.com/watch?v=mFFXuXjVgkU) + +See you on [Day 71](day71.md) diff --git a/zh_tw/Days/day71.md b/zh_tw/Days/day71.md new file mode 100644 index 000000000..869db6d6a --- /dev/null +++ b/zh_tw/Days/day71.md @@ -0,0 +1,107 @@ +--- +title: '#90DaysOfDevOps - What is Jenkins? - Day 71' +published: false +description: 90DaysOfDevOps - What is Jenkins? +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048745 +--- +## What is Jenkins? + +Jenkins is a continous integration tool that allows continous development, test and deployment of newly created code. + +There are two ways we can achieve this with either nightly builds or continous development. The first option is that our developers are developing throughout the day on their tasks and come the end of the set day they push their changes to the source code repository. Then during the night we run our unit tests and build of the software. This could be deemed as the old way to integrate all code. + +![](Images/Day71_CICD1.png) + +The other option and the preferred way is that our developers are still committing their changes to source code, then when that code commit has been made there is a build process kicked off continously. + +![](Images/Day71_CICD2.png) + +The above methods means that with distributed developers across the world we don't have a set time each day where we have to stop committing our code changes. This is where Jenkins comes in to act as that CI server to control those tests and build processes. + +![](Images/Day71_CICD3.png) + +I know we are talking about Jenkins here but I also want to add a few more to maybe look into later on down the line to get an understanding why I am seeing Jenkins as the overall most popular, why is that and what can the others do over Jenkins. + +- TravisCI - A hosted, distributed continous integration service used to build and test software projects hosted on GitHub. + +- Bamboo - Can run multiple builds in parallel for faster compilation, built in functionality to connect with repositories and has build tasks for Ant, Maven. + +- Buildbot - is an open-source framework for automating software build, test and release processes. It is written in Python and supports distributed, parallel execution of jobs across multiple platforms. + +- Apache Gump - Specific to Java projects, designed with the aim to build and test those Java projects every night. ensures that all projects are compatible at both API and functionality level. + +Because we are now going to focus on Jenkins - Jenkins is again open source like all of the above tools and is an automation server written in Java. It is used to automate the software development process via continous integration adn faciliates continous delivery. + +### Features of Jenkins + +As you can probably expect Jenkins has a lot of features spanning a lot of areas. + +**Easy Installation** - Jenkins is a self contained java based program ready to run with packages for Windows, macOS and Linux operating systems. + +**Easy Configuration** - Easy setup and configured via a web interface which includes error checks and built in help. + +**Plug-ins** - Lots of plugins available in the Update Centre and integrates with many tools in the CI / CD toolchain. + +**Extensible** - In addition to the Plug-Ins available, Jenkins can be extended by that plugin architecture which provides nearly infinite options for what it can be used for. + +**Distributed** - Jenkins easily distributes work across multiple machines, helping to speed up builds, tests and deployments across multiple platforms. + +### Jenkins Pipeline + +You will have seen this pipeline but used in a much broader and we have not spoken about specific tools. + +You are going to be committing code to Jenkins, which then will build out your application, with all automated tests, it will then release and deploy that code when each step is completed. Jenkins is what allows for the automation of this process. + +![](Images/Day71_CICD4.png) + +### Jenkins Architecture + +First up and not wanting to reinvent the wheel, the [Jenkins Documentation](https://www.jenkins.io/doc/developer/architecture/) is always the place to start but I am going to put down my notes and learnings here as well. + +Jenkins can be installed on many different operating systems, Windows, Linux and macOS but then also the ability to deploy as a Docker container and within Kubernetes. [Installing Jenkins](https://www.jenkins.io/doc/book/installing/) + +As we get into this we will likely take a look at installing Jenkins within a minikube cluster simulating the deployment to Kubernetes. But this will depend on the scenarios we put together throughout the rest of the section. + +Let's now break down the image below. + +Step 1 - Developers commit changes to the source code repository. + +Step 2 - Jenkins checks the repository at regular intervals and pulls any new code. + +Step 3 - A build server then builds the code into an executable, in this example we are using maven as a well known build server. Another area to cover. + +Step 4 - If the build fails then feedback is sent back to the developers. + +Step 5 - Jenkins then deploys the build app to the test server, in this example we are using selenium as a well known test server. Another area to cover. + +Step 6 - If the test fails then feedback is passed to the developers. + +Step 7 - If the tests are successful then we can release to production. + +This cycle is continous, this is what allows applications to be updated in minutes vs hours, days, months, years! + +![](Images/Day71_CICD5.png) + +There is a lot more to the architecture of Jenkins if you require it, they have a master-slave capability, which enables a master to distribute the tasks to slave jenkins environment. + +For reference with Jenkins being open source, there are going to be lots of enterprises that require support, CloudBees is that enterprise version of Jenkins that brings support and possibly other functionality for the paying enterprise customer. + +An example of this in a customer is Bosch, you can find the Bosch case study [here](https://assets.ctfassets.net/vtn4rfaw6n2j/case-study-boschpdf/40a0b23c61992ed3ee414ae0a55b6777/case-study-bosch.pdf) + +I am going to be looking for a step by step example of an application that we can use to walkthrough using Jenkins and then also use this with some other tools. + +## Resources + +- [Jenkins is the way to build, test, deploy](https://youtu.be/_MXtbjwsz3A) +- [Jenkins.io](https://www.jenkins.io/) +- [ArgoCD](https://argo-cd.readthedocs.io/en/stable/) +- [ArgoCD Tutorial for Beginners](https://www.youtube.com/watch?v=MeU5_k9ssrs) +- [What is Jenkins?](https://www.youtube.com/watch?v=LFDrDnKPOTg) +- [Complete Jenkins Tutorial](https://www.youtube.com/watch?v=nCKxl7Q_20I&t=3s) +- [GitHub Actions](https://www.youtube.com/watch?v=R8_veQiYBjI) +- [GitHub Actions CI/CD](https://www.youtube.com/watch?v=mFFXuXjVgkU) + +See you on [Day 72](day72.md) diff --git a/zh_tw/Days/day72.md b/zh_tw/Days/day72.md new file mode 100644 index 000000000..f3195c849 --- /dev/null +++ b/zh_tw/Days/day72.md @@ -0,0 +1,162 @@ +--- +title: '#90DaysOfDevOps - Getting hands on with Jenkins - Day 72' +published: false +description: 90DaysOfDevOps - Getting hands on with Jenkins +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048829 +--- +## Getting hands on with Jenkins + +The plan today is to get some hands on with Jenkins and make something happen as part of our CI pipeline, looking at some example code bases that we can use. + +### What is a pipeline? + +Before we start we need to know what is a pipeline when it comes to CI, and we already covered this in the session yesterday with the following image. + +![](Images/Day71_CICD4.png) + +We want to take the processes or steps above and we want to automate them to get an outcome eventually meaning that we have a deployed application that we can then ship to our customers, end users etc. + +This automated process enables us to have a version control through to our users and customers. Every change, feature enhancement, bug fix etc goes through this automated process confirming that everything is fine without too much manual intervention to ensure our code is good. + +This process involves building the software in a reliable and repeatable manner, as well as progressing the built software (called a "build") through multiple stages of testing and deployment. + +A jenkins pipeline, is written into a text file called a Jenkinsfile. Which itself should be committed to a source control repository. This is also known as Pipeline as code, we could also very much liken this to Infrastructure as code which we covered a few weeks back. + +[Jenkins Pipeline Definition](https://www.jenkins.io/doc/book/pipeline/#ji-toolbar) + +### Deploying Jenkins + +I had some fun deploying Jenkins, You will notice from the [documentation](https://www.jenkins.io/doc/book/installing/) that there are many options on where you can install Jenkins. + +Given that I have minikube on hand and we have used this a number of times I wanted to use this for this task also. (also it is free!) Although the steps given in the [Kubernetes Installation](https://www.jenkins.io/doc/book/installing/kubernetes/) had me hitting a wall and not getting things up and running, you can compare the two when I document my steps here. + +The first step is to get our minikube cluster up and running, we can simply do this with the `minikube start` command. + +![](Images/Day72_CICD1.png) + +I have added a folder with all the YAML configuration and values that can be found [here](days/CICD/Jenkins) Now that we have our cluster we can run the following to create our jenkins namespace. `kubectl create -f jenkins-namespace.yml` + +![](Images/Day72_CICD2.png) + +We will be using Helm to deploy jenkins into our cluster, we covered helm in the Kubernetes section. We firstly need to add the jenkinsci helm repository `helm repo add jenkinsci https://charts.jenkins.io` then update our charts `helm repo update`. + +![](Images/Day72_CICD3.png) + +The idea behind Jenkins is that it is going to save state for its pipelines, you can run the above helm installation without persistence but if those pods are rebooted, changed or modified then any pipeline or configuration you have made will be lost. We will create a volume for persistence using the jenkins-volume.yml file with the `kubectl apply -f jenkins-volume.yml` command. + +![](Images/Day72_CICD4.png) + +We also need a service account which we can create using this yaml file and command. `kubectl apply -f jenkins-sa.yml` + +![](Images/Day72_CICD5.png) + +At this stage we are good to deploy using the helm chart, we will firstly define our chart using `chart=jenkinsci/jenkins` and then we will deploy using this command where the jenkins-values.yml contain the persistence and service accounts that we previously deployed to our cluster. `helm install jenkins -n jenkins -f jenkins-values.yml $chart` + +![](Images/Day72_CICD6.png) + +At this stage our pods will be pulling the image but the pod will not have access to the storage so no configuration can be started in terms of getting Jenkins up and running. + +This is where the documentation did not help me massively understand what needed to happen. But we can see that we have no permission to start our jenkins install. + +![](Images/Day72_CICD7.png) + +In order to fix the above or resolve, we need to make sure we provide access or the right permission in order for our jenkins pods to be able to write to this location that we have suggested. We can do this by using the `minikube ssh` which will put us into the minikube docker container we are running on, and then using `sudo chown -R 1000:1000 /data/jenkins-volume` we can ensure we have permissions set on our data volume. + +![](Images/Day72_CICD8.png) + +The above process should fix the pods, however if not you can force the pods to be refreshed with the `kubectl delete pod jenkins-0 -n jenkins` command. At this point you should have 2/2 running pods called jenkins-0. + +![](Images/Day72_CICD9.png) + +We now need our admin password and we can this using the following command. `kubectl exec --namespace jenkins -it svc/jenkins -c jenkins -- /bin/cat /run/secrets/chart-admin-password && echo` + +![](Images/Day72_CICD10.png) + +Now open a new terminal as we are going to use the `port-forward` command to allow us to gain access from our workstation. `kubectl --namespace jenkins port-forward svc/jenkins 8080:8080` + +![](Images/Day72_CICD11.png) + +We should now be able to open a browser and login to http://localhost:8080 and authenticate with the username: admin and password we gathered in a previous step. + +![](Images/Day72_CICD12.png) + +When we have authenticated, our Jenkins welcome page should look something like this: + +![](Images/Day72_CICD13.png) + +From here, I would suggest heading to "Manage Jenkins" and you will see "Manage Plugins" which will have some updates available. Select all of those plugins and choose "Download now and install after restart" + +![](Images/Day72_CICD14.png) + +If you want to go even further and automate the deployment of Jenkins using a shell script this great repository was shared with me on twitter [mehyedes/nodejs-k8s](https://github.com/mehyedes/nodejs-k8s/blob/main/docs/automated-setup.md) + + +### Jenkinsfile +Now we have Jenkins deployed in our Kubernetes cluster, we can now go back and think about this Jenkinsfile. + +Every Jenkinsfile will likely start like this, Which is firstly where you would define your steps of your pipeline, in this instance you have Build > Test > Deploy. But we are not really doing anything other than using the `echo` command to call out the specific stages. + +``` + +Jenkinsfile (Declarative Pipeline) + +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +} + +``` +In our Jenkins dashboard, select "New Item" give the item a name, I am going to "echo1" I am going to suggest that this is a Pipeline. + +![](Images/Day72_CICD15.png) + +Hit Ok and you will then have the tabs (General, Build Triggers, Advanced Project Options and Pipeline) for a simple test we are only interested in Pipeline. Under Pipeline you have the ability to add a script, we can copy and paste the above script into the box. + +As we said above this is not going to do much but it will show us the stages of our Build > Test > Deploy + +![](Images/Day72_CICD16.png) + +Click Save, We can now run our build using the build now highlighted below. + +![](Images/Day72_CICD17.png) + +We should also open a terminal and run the `kubectl get pods -n jenkins` to see what happens there. + +![](Images/Day72_CICD18.png) + +Ok, very simple stuff but we can now see that our Jenkins deployment and installation is working correctly and we can start to see the building blocks of the CI pipeline here. + +In the next section we will be building a Jenkins Pipeline. + +## Resources + +- [Jenkins is the way to build, test, deploy](https://youtu.be/_MXtbjwsz3A) +- [Jenkins.io](https://www.jenkins.io/) +- [ArgoCD](https://argo-cd.readthedocs.io/en/stable/) +- [ArgoCD Tutorial for Beginners](https://www.youtube.com/watch?v=MeU5_k9ssrs) +- [What is Jenkins?](https://www.youtube.com/watch?v=LFDrDnKPOTg) +- [Complete Jenkins Tutorial](https://www.youtube.com/watch?v=nCKxl7Q_20I&t=3s) +- [GitHub Actions](https://www.youtube.com/watch?v=R8_veQiYBjI) +- [GitHub Actions CI/CD](https://www.youtube.com/watch?v=mFFXuXjVgkU) + +See you on [Day 73](day73.md) diff --git a/zh_tw/Days/day73.md b/zh_tw/Days/day73.md new file mode 100644 index 000000000..bcc58a643 --- /dev/null +++ b/zh_tw/Days/day73.md @@ -0,0 +1,224 @@ +--- +title: '#90DaysOfDevOps - Building a Jenkins Pipeline - Day 73' +published: false +description: 90DaysOfDevOps - Building a Jenkins Pipeline +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048766 +--- +## Building a Jenkins Pipeline + +In the last section we got Jenkins deployed to our Minikube cluster and we set up a very basic Jenkins Pipeline, that didn't do much at all other than echo out the stages of a Pipeline. + +You might have also seen that there are some example scripts available for us to run in the Jenkins Pipeline creation. + +![](Images/Day73_CICD1.png) + +The first demo script is "Declartive (Kubernetes)" and you can see the stages below. + +``` +// Uses Declarative syntax to run commands inside a container. +pipeline { + agent { + kubernetes { + // Rather than inline YAML, in a multibranch Pipeline you could use: yamlFile 'jenkins-pod.yaml' + // Or, to avoid YAML: + // containerTemplate { + // name 'shell' + // image 'ubuntu' + // command 'sleep' + // args 'infinity' + // } + yaml ''' +apiVersion: v1 +kind: Pod +spec: + containers: + - name: shell + image: ubuntu + command: + - sleep + args: + - infinity +''' + // Can also wrap individual steps: + // container('shell') { + // sh 'hostname' + // } + defaultContainer 'shell' + } + } + stages { + stage('Main') { + steps { + sh 'hostname' + } + } + } +} +``` +You can see below the outcome of what happens when this Pipeline is ran. + +![](Images/Day73_CICD2.png) + +### Job creation + +**Goals** + +- Create a simple app and store in GitHub public repository (https://github.com/scriptcamp/kubernetes-kaniko.git) + +- Use Jenkins to build our docker Container image and push to docker hub. (for this we will use a private repository) + +To achieve this in our Kubernetes cluster running in or using Minikube we need to use something called [Kaniko](https://github.com/GoogleContainerTools/kaniko#running-kaniko-in-a-kubernetes-cluster) It general though if you are using Jenkins in a real Kubernetes cluster or you are running it on a server then you can specify an agent which will give you the ability to perform the docker build commands and upload that to DockerHub. + +With the above in mind we are also going to deploy a secret into Kubernetes with our GitHub credentials. + +``` +kubectl create secret docker-registry dockercred \ + --docker-server=https://index.docker.io/v1/ \ + --docker-username= \ + --docker-password=\ + --docker-email= +``` + +In fact I want to share another great resource from [DevOpsCube.com](https://devopscube.com/build-docker-image-kubernetes-pod/) running through much of what we will cover here. + +### Adding credentials to Jenkins + +However if you were on a Jenkins system unlike ours then you will likely want to define your credentials within Jenkins and then use them multiple times within your Pipelines and configurations. We can refer to these credentials in the Pipelines using the ID we determine on creation. I went ahead and stepped through and created a user entry for DockerHub and GitHub. + +First of all select "Manage Jenkins" and then "Manage Credentials" + +![](Images/Day73_CICD3.png) + +You will see in the centre of the page, Stores scoped to Jenkins click on Jenkins here. + +![](Images/Day73_CICD4.png) + +Now select Global Credentials (Unrestricted) + +![](Images/Day73_CICD5.png) + +Then in the top left you have Add Credentials + +![](Images/Day73_CICD6.png) + +Fill in your details for your account and then select OK, remember the ID is what you will refer to when you want to call this credential. My advice here also is that you use specific token access vs passwords. + +![](Images/Day73_CICD7.png) + +For GitHub you should use a [Personal Access Token](https://vzilla.co.uk/vzilla-blog/creating-updating-your-github-personal-access-token) + +Personally I did not find this process very intuitive to create these accounts, so even though we are not using I wanted to share the process as it is not clear from the UI. + +### Building the pipeline + +We have our DockerHub credentials deployed to as a secret into our Kubernetes cluster which we will call upon for our docker deploy to DockerHub stage in our pipeline. + +The pipeline script is what you can see below, this could in turn become our Jenkinsfile located in our GitHub repository which you can also see is listed in the Get the project stage of the pipeline. + +``` +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('Get the project') { + git url: 'https://github.com/scriptcamp/kubernetes-kaniko.git', branch: 'main' + container('maven') { + stage('Test the project') { + sh ''' + echo pwd + ''' + } + } + } + + stage('Build & Test the Docker Image') { + container('kaniko') { + stage('Deploy to DockerHub') { + sh ''' + /kaniko/executor --context `pwd` --destination michaelcade1/helloworld:latest + ''' + } + } + } + + } +} +``` + +To kick things on the Jenkins dashboard we need to select "New Item" + +![](Images/Day73_CICD8.png) + +We are then going to give our item a name, select Pipeline and then hit ok. + +![](Images/Day73_CICD9.png) + +We are not going to be selecting any of the general or build triggers but have a play with these as there are some interesting schedules and other configurations that might be useful. + +![](Images/Day73_CICD10.png) + +We are only interested in the Pipeline tab at the end. + +![](Images/Day73_CICD11.png) + +In the Pipeline definition we are going to copy and paste the pipeline script that we have above into the Script section and hit save. + +![](Images/Day73_CICD12.png) + +Next we will select the "Build Now" option on the left side of the page. + +![](Images/Day73_CICD13.png) + +You should now wait a short amount of time, less than a minute really. and you should see under status the stages that we defined above in our script. + +![](Images/Day73_CICD14.png) + +More importantly if we now head on over to our DockerHub and check that we have a new build. + +![](Images/Day73_CICD15.png) + +This overall did take a while to figure out but I wanted to stick with it for the purpose of getting hands on and working through a scenario that anyone can run through using minikube and access to github and dockerhub. + +The DockerHub repository I used for this demo was a private one. But in the next section I want to advance some of these stages and actually have them do something vs just printing out `pwd` and actually run some tests and build stages. + +## Resources + +- [Jenkins is the way to build, test, deploy](https://youtu.be/_MXtbjwsz3A) +- [Jenkins.io](https://www.jenkins.io/) +- [ArgoCD](https://argo-cd.readthedocs.io/en/stable/) +- [ArgoCD Tutorial for Beginners](https://www.youtube.com/watch?v=MeU5_k9ssrs) +- [What is Jenkins?](https://www.youtube.com/watch?v=LFDrDnKPOTg) +- [Complete Jenkins Tutorial](https://www.youtube.com/watch?v=nCKxl7Q_20I&t=3s) +- [GitHub Actions](https://www.youtube.com/watch?v=R8_veQiYBjI) +- [GitHub Actions CI/CD](https://www.youtube.com/watch?v=mFFXuXjVgkU) + +See you on [Day 74](day74.md) diff --git a/zh_tw/Days/day74.md b/zh_tw/Days/day74.md new file mode 100644 index 000000000..9eddd2542 --- /dev/null +++ b/zh_tw/Days/day74.md @@ -0,0 +1,95 @@ +--- +title: '#90DaysOfDevOps - Hello World - Jenkinsfile App Pipeline - Day 74' +published: false +description: 90DaysOfDevOps - Hello World - Jenkinsfile App Pipeline +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048744 +--- +## Hello World - Jenkinsfile App Pipeline + +In the last section we built a simple Pipeline in Jenkins that would push our docker image from our dockerfile in a public GitHub repository to our private Dockerhub repository. + +In this section we want to take this one step further and we want to achieve the following with our simple application. + +### Objective + +- Dockerfile (Hello World) +- Jenkinsfile +- Jenkins Pipeline to trigger when GitHub Repository is updated +- Use GitHub Repository as source. +- Run - Clone/Get Repository, Build, Test, Deploy Stages +- Deploy to DockerHub with incremental version numbers +- Stretch Goal to deploy to our Kubernetes Cluster (This will involve another job and manifest repository using GitHub credentials) + +### Step One + +We have our [GitHub repository](https://github.com/MichaelCade/Jenkins-HelloWorld) This currently contains our Dockerfile and our index.html + +![](Images/Day74_CICD1.png) + +With the above this is what we were using as our source in our Pipeline, now we want to add that Jenkins Pipeline script to our GitHub repository as well. + +![](Images/Day74_CICD2.png) + +Now back in our Jenkins dashboard, we are going to create a new pipeline but now instead of pasting our script we are going to use "Pipeline script from SCM" We are then going to use the configuration options below. + +For reference we are going to use https://github.com/MichaelCade/Jenkins-HelloWorld.git as the repository URL. + +![](Images/Day74_CICD3.png) + +We could at this point hit save and apply and we would then be able to manually run our Pipeline building our new Docker image that is uploaded to our DockerHub repository. + +However, I also want to make sure that we set a schedule that whenever our repository or our source code is changed, I want to trigger a build. we could use webhooks or we could use a scheduled pull. + +This is a big consideration because if you are using costly cloud resources to hold your pipeline and you have lots of changes to your code repository then you will incur a lot of costs. We know that this is a demo environment which is why I am using the "poll scm" option. (Also I believe that using minikube I am lacking the ability to use webhooks) + +![](Images/Day74_CICD4.png) + +One thing I have changed since yesterdays session is I want to now upload my image to a public repository which in this case would be michaelcade1\90DaysOfDevOps, my Jenkinsfile has this change already. And from previous sections I have removed any existing demo container images. + +![](Images/Day74_CICD5.png) + +Going backwards here, we created our Pipeline and then as previously shown we added our configuration. + +![](Images/Day74_CICD6.png) + +At this stage our Pipeline has never ran and your stage view will look something like this. + +![](Images/Day74_CICD7.png) + +Now lets trigger the "Build Now" button. and our stage view will display our stages. + +![](Images/Day74_CICD8.png) + +If we then head over to our DockerHub repository, we should have 2 new Docker images. We should have a Build ID of 1 and a latest because every build that we create based on the "Upload to DockerHub" is we send a version using the Jenkins Build_ID environment variable and we also issue a latest. + +![](Images/Day74_CICD9.png) + +Let's go and create an update to our index.html file in our GitHub repository as per below, I will let you go and find out what version 1 of the index.html was saying. + +![](Images/Day74_CICD10.png) + +If we head back to Jenkins and select "Build Now" again. We will see our #2 build is successful. + +![](Images/Day74_CICD11.png) + +Then a quick look at DockerHub, we can see that we have our tagged version 2 and our latest tag. + +![](Images/Day74_CICD12.png) + +It is worth noting here that I have added into my Kubernetes cluster a secret that enables my access and authentication to push my docker builds into DockerHub. If you are following along you should repeat this process for your account, and also make a change to the Jenkinsfile that is associated to my repository and account. + +## Resources + +- [Jenkins is the way to build, test, deploy](https://youtu.be/_MXtbjwsz3A) +- [Jenkins.io](https://www.jenkins.io/) +- [ArgoCD](https://argo-cd.readthedocs.io/en/stable/) +- [ArgoCD Tutorial for Beginners](https://www.youtube.com/watch?v=MeU5_k9ssrs) +- [What is Jenkins?](https://www.youtube.com/watch?v=LFDrDnKPOTg) +- [Complete Jenkins Tutorial](https://www.youtube.com/watch?v=nCKxl7Q_20I&t=3s) +- [GitHub Actions](https://www.youtube.com/watch?v=R8_veQiYBjI) +- [GitHub Actions CI/CD](https://www.youtube.com/watch?v=mFFXuXjVgkU) + +See you on [Day 75](day75.md) diff --git a/zh_tw/Days/day75.md b/zh_tw/Days/day75.md new file mode 100644 index 000000000..fce804420 --- /dev/null +++ b/zh_tw/Days/day75.md @@ -0,0 +1,185 @@ +--- +title: '#90DaysOfDevOps - GitHub Actions Overview - Day 75' +published: false +description: 90DaysOfDevOps - GitHub Actions Overview +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049070 +--- +## GitHub Actions Overview + +In this section I wanted to move on and take a look at maybe a different approach to what we just spent time on. GitHub Actions is where we will focus on in this session. + +GitHub Actions is a CI/CD platform that allows us to build, test and deploy amongst other tasks our pipeline. It has the concept of workflows that build and test against a GitHub repository. You could also use GitHub Actions to drive other workflows based on events that happen within your repository. + +### Workflows + +Overall, in GitHub Actions our task is called a **Workflow**. + +- A **workflow** is the configurable automated process. +- Defined as YAML files. +- Contain and run one or more **jobs** +- Will run when triggered by an **event** in your repository or can be ran manually +- You can multiple workflows per repository +- A **workflow** will contain a **job** and then **steps** to achieve that **job** +- Within our **workflow** we will also have a **runner** on which our **workflow** runs. + +For example, you can have one **workflow** to build and test pull requests, another **workflow** to deploy your application every time a release is created, and still another **workflow** that adds a label every time someone opens a new issue. + +### Events + +Events are a specific event in a repository that triggers the workflow to run. + +### Jobs + +A job is a set of steps in the workflow that execute on a runner. + +### Steps + +Each step within the job can be a shell script that gets executed, or an action. Steps are executed in order and they are dependant on each other. + +### Actions + +A repeatable custom application used for frequently repeated tasks. + +### Runners + +A runner is a server that runs the workflow, each runner runs a single job at a time. GitHub Actions provides the ability to run Ubuntu Linux, Microsoft Windows, and macOS runners. You can also host your own on specific OS or hardware. + +Below you can see how this looks, we have our event triggering our workflow > our workflow consists of two jobs > within our jobs we then have steps and then we have actions. + +![](Images/Day75_CICD1.png) + +### YAML + +Before we get going with a real use case lets take a quick look at the above image in the form of an example YAML file. + +I have added # to comment in where we can find the components of the YAML workflow. + +``` +#Workflow +name: 90DaysOfDevOps +#Event +on: [push] +#Jobs +jobs: + check-bats-version: + #Runners + runs-on: ubuntu-latest + #Steps + steps: + #Actions + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v +``` + +### Getting Hands-On with GitHub Actions + +I think there are a lot of options when it comes to GitHub Actions, yes it will satisfy your CI/CD needs when it comes to Build, Test, Deploying your code and the continued steps thereafter. + +I can see lots of options and other automated tasks that we could use GitHub Actions for. + +### Using GitHub Actions for Linting your code + +One option is making sure your code is clean and tidy within your repository. This will be our first example demo. + +I am going to be using some example code linked in one of the resources for this section, we are going to use `github/super-linter` to check against our code. + +``` +name: Super-Linter + +on: push + +jobs: + super-lint: + name: Lint code base + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run Super-Linter + uses: github/super-linter@v3 + env: + DEFAULT_BRANCH: main + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +``` + +**github/super-linter** +You can see from the above that for one of our steps we have an action called github/super-linter and this is referring to a step that has already been written by the community. You can find out more about this here [Super-Linter](https://github.com/github/super-linter) + +"This repository is for the GitHub Action to run a Super-Linter. It is a simple combination of various linters, written in bash, to help validate your source code." + +Also in the code snippet above it mentions GITHUB_TOKEN so I was interested to find out why and what this does and needed for. + +"NOTE: If you pass the Environment variable `GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}` in your workflow, then the GitHub Super-Linter will mark the status of each individual linter run in the Checks section of a pull request. Without this you will only see the overall status of the full run. **There is no need to set the GitHub Secret as it is automatically set by GitHub, it only needs to be passed to the action.**" + +The bold text being important to note at this stage. We are using it but we do not need to set any environment variable within our repository. + +We will use our repository that we used in our Jenkins demo to test against.[Jenkins-HelloWorld](https://github.com/MichaelCade/Jenkins-HelloWorld) + +Here is our repository as we left it in the Jenkins sessions. + +![](Images/Day75_CICD2.png) + +In order for us to take advantage we have to use the Actions tab above to choose from the marketplace which I will cover shortly or we can create our own files using our super-linter code above, in order to create your own you must create a new file in your repository at this exact location. `.github/workflows/workflow_name` obviously making sure the workflow_name is something useful for you recognise, within here we can have many different workflows performing different jobs and tasks against our repository. + +We are going to create `.github/workflows/super-linter.yml` + +![](Images/Day75_CICD3.png) + +We can then paste our code and commit the code to our repository, if we then head to the Actions tab we will now see our Super-Linter workflow listed as per below, + +![](Images/Day75_CICD4.png) + +We defined in our code that this workflow would run when we pushed anything to our repository, so in pushing the super-linter.yml to our repository we triggered the workflow. + +![](Images/Day75_CICD5.png) + +As you can see from the above we have some errors most likely with my hacking ability vs coding ability. + +Although actually it was not my code at least not yet, in running this and getting an error I found this [issue](https://github.com/github/super-linter/issues/2255) + +Take #2 I changed the version of Super-Linter from version 3 to 4 and have ran the task again. + +![](Images/Day75_CICD6.png) + +As expected my hacker coding brought up some issues and you can see them here in the [workflow](https://github.com/MichaelCade/Jenkins-HelloWorld/runs/5600278515?check_suite_focus=true) + +I wanted to show the look now on our repository when something within the workflow has failed or reported back an error. + +![](Images/Day75_CICD7.png) + +Now if we resolve the issue with my code and push the changes our workflow will run again (you can see from the image it took a while to iron out our "bugs") Deleting a file is probably not recommended but it is a very quick way to show the issue being resolved. + +![](Images/Day75_CICD8.png) + +If you hit the new workflow button highlighted above, this is going to open the door to a huge plethora of actions. One thing you might have noticed throughout this challenge is that we don't want to reinvent the wheel we want to stand on the shoulders of giants and share our code, automations and skills far and wide to make our lives easier. + +![](Images/Day75_CICD9.png) + +Oh, I didn't show you the green tick on the repository when our workflow was successful. + +![](Images/Day75_CICD10.png) + +I think that covers things from a foundational point of view for GitHub Actions but if you are anything like me then you are probably seeing how else GitHub Actions can be used to automate a lot of tasks. + +Next up we will cover another area of CD, we will be looking into ArgoCD to deploy our applications out into our environments. + +## Resources + +- [Jenkins is the way to build, test, deploy](https://youtu.be/_MXtbjwsz3A) +- [Jenkins.io](https://www.jenkins.io/) +- [ArgoCD](https://argo-cd.readthedocs.io/en/stable/) +- [ArgoCD Tutorial for Beginners](https://www.youtube.com/watch?v=MeU5_k9ssrs) +- [What is Jenkins?](https://www.youtube.com/watch?v=LFDrDnKPOTg) +- [Complete Jenkins Tutorial](https://www.youtube.com/watch?v=nCKxl7Q_20I&t=3s) +- [GitHub Actions](https://www.youtube.com/watch?v=R8_veQiYBjI) +- [GitHub Actions CI/CD](https://www.youtube.com/watch?v=mFFXuXjVgkU) + +See you on [Day 76](day76.md) diff --git a/zh_tw/Days/day76.md b/zh_tw/Days/day76.md new file mode 100644 index 000000000..eb2ef9507 --- /dev/null +++ b/zh_tw/Days/day76.md @@ -0,0 +1,82 @@ +--- +title: '#90DaysOfDevOps - ArgoCD Overview - Day 76' +published: false +description: 90DaysOfDevOps - ArgoCD Overview +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048809 +--- +## ArgoCD Overview + +“Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes” + +Version control is the key here, ever made a change to your environment on the fly and have no recollection of that change and because the lights are on and everything is green you continue to keep plodding along? Ever made a change and broke everything or some of everything? You might have known you made the change and you can quickly roll back your change, that bad script or misspelling. Now ever done this a massive scale and maybe it was not you or maybe it was not found straight away and now the business is suffering. Therefore, version control is important. Not only that but “Application definitions, configurations, and environments should be declarative, and version controlled.” On top of this (which comes from ArgoCD), they also mention that “Application deployment and lifecycle management should be automated, auditable, and easy to understand.” + +From an Operations background but having played a lot around Infrastructure as Code this is the next step to ensuring all of that good stuff is taken care of along the way with continuous deployment/delivery workflows. + +[What is ArgoCD](https://argo-cd.readthedocs.io/en/stable/) + +### Deploying ArgoCD + +We are going to be using our trusty minikube Kubernetes cluster locally again for this deployment. + +``` +kubectl create namespace argocd +kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml +``` + +![](Images/Day76_CICD1.png) + +Make sure all the ArgoCD pods are up and running with `kubectl get pods -n argocd` + +![](Images/Day76_CICD2.png) + +Also let's check everything that we deployed in the namespace with `kubectl get all -n argocd` + +![](Images/Day76_CICD3.png) + +When the above is looking good, we then should consider accessing this via the port forward. Using the `kubectl port-forward svc/argocd-server -n argocd 8080:443` command. Do this in a new terminal. + +Then open a new web browser and head to https://localhost:8080 + +![](Images/Day76_CICD4.png) + +To log in you will need a username of admin and then to grab your created secret as your password use the `kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d && echo` + +![](Images/Day76_CICD5.png) + +Once you have logged in you will have your blank CD canvas. + +![](Images/Day76_CICD6.png) + +### Deploying our application + +Now we have ArgoCD up and running we can now start using it to deploy our applications from our Git repositories as well as Helm. + +The application I want to deploy is Pac-Man, yes that's right the famous game and something I use in a lot of demos when it comes to data management, this will not be the last time we see Pac-Man. + +You can find the repository for [Pac-Man](https://github.com/MichaelCade/pacman-tanzu.git) here. + +Instead of going through each step using screen shots I thought it would be easier to create a walkthrough video covering the steps taken for this one particular application deployment. + +[ArgoCD Demo - 90DaysOfDevOps](https://www.youtube.com/watch?v=w6J413_j0hA) + +Note - During the video there is a service that is never satisfied as the app health being healthy this is because the LoadBalancer type set for the pacman service is in a pending state, in Minikube we do not have a loadbalancer configured. If you would like to test this you could change the YAML for the service to ClusterIP and use port forwarding to play the game. + +This wraps up the CICD Pipelines section, I feel there is a lot of focus on this area in the industry at the moment and you will also hear terms around GitOps also related to the methodologies used within CICD in general. + +The next section we move into is around Observability, another concept or area that is not new but it is more and more important as we look at our environments in a different way. + +## Resources + +- [Jenkins is the way to build, test, deploy](https://youtu.be/_MXtbjwsz3A) +- [Jenkins.io](https://www.jenkins.io/) +- [ArgoCD](https://argo-cd.readthedocs.io/en/stable/) +- [ArgoCD Tutorial for Beginners](https://www.youtube.com/watch?v=MeU5_k9ssrs) +- [What is Jenkins?](https://www.youtube.com/watch?v=LFDrDnKPOTg) +- [Complete Jenkins Tutorial](https://www.youtube.com/watch?v=nCKxl7Q_20I&t=3s) +- [GitHub Actions](https://www.youtube.com/watch?v=R8_veQiYBjI) +- [GitHub Actions CI/CD](https://www.youtube.com/watch?v=mFFXuXjVgkU) + +See you on [Day 76](day76.md) diff --git a/zh_tw/Days/day77.md b/zh_tw/Days/day77.md new file mode 100644 index 000000000..ef45231bc --- /dev/null +++ b/zh_tw/Days/day77.md @@ -0,0 +1,82 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: Monitoring - Day 77' +published: false +description: 90DaysOfDevOps - The Big Picture Monitoring +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048715 +--- +## The Big Picture: Monitoring + +In this section we are going to talk about monitoring, what is it why do we need it? + +### What is Monitoring? + +Monitoring is the process of keeping a close eye on the entire infrastructure + +### and why do we need it? + +Let's assume we're managing a thousand servers these include a variety of specialised servers like application servers, database servers and web servers. We could also complicate this further with additional services and different platforms including public cloud offerings and Kubernetes. + +![](Images/Day77_Monitoring1.png) + +We are responsible for ensuring that all the services, applications and resources on the servers are running as they should be. + +![](Images/Day77_Monitoring2.png) + +How do we do it? there are three ways: + +- Login manually to all of our servers and check all the data pertaining to services processes and resources. +- Write a script that logs in to the servers for us and checks on the data. + +Both of these options would require considerable amount of work on our part, + +The third option is easier, we could use a monitoring solution that is available in the market. + +Nagios and Zabbix are possible solutions that are readily available which allow us to upscale our monitoring infrastructure to include as many servers as we want. + +### Nagios + +Nagios is an infrastructure monitoring tool that is made by a company that goes by the same name. The open-source version of this tool is called Nagios core while the commercial version is called Nagios XI. [Nagios Website](https://www.nagios.org/) + +The tool allows us to monitor our servers and see if they are being sufficiently utilised or if there are any tasks of failure that need addressing. + +![](Images/Day77_Monitoring3.png) + +Essentially monitoring allows us to achieve these two goals, check the status of our servers and services and determine the health of our infrastructure it also gives us a 40,000ft view of the complete infrastructure to see if our servers are up and running, if the applications are working properly and the web servers are reachable or not. + +It will tell us that our disk has been increasing by 10 percent for the last 10 weeks in a particular server, that it will exhaust entirely within the next four or five days and we'll fail to respond soon it will alert us when your disk or server is in a critical state so that we can take appropriate actions to avoid possible outages. + +In this case we can free up some disk space and ensure that our servers don't fail and that our users are not affected. + +The difficult question for most monitoring engineers is what do we monitor? and alternately what do we not? + +Every system has a number of resources, which of these should we keep a close eye on and which ones can we turn a blind eye to for instance is it necessary to monitor CPU usage the answer is yes obviously nevertheless it is still a decision that has to be made is it necessary to monitor the number of open ports in the system we may or may not have to depending on the situation if it is a general-purpose server we probably won't have to but then again if it is a webserver we probably would have to. + +### Continous Monitoring + +Monitoring is not a new item and even continous monitoring has been an ideal that many enterprises have adopted for many years. + +There are three key areas of focus when it comes to monitoring. + +- Infrastructure Monitoring +- Application Monitoring +- Network Monitoring + +The important thing to note is that there are many tools available we have mentioned two generic systems and tools in this session but there are lots. The real benefit of a monitoring solution comes when you have really spent the time making sure you are answering that question of what should we be monitoring and what shouldn't we? + +We could turn on a monitoring solution in any of our platforms and it will start grabbing information but if that information is simply too much then you are going to struggle to benefit from that solution, you have to spend the time to configure. + +In the next session we will get hands on with a monitoring tool and see what we can start monitoring. + +## Resources + +- [The Importance of Monitoring in DevOps](https://www.devopsonline.co.uk/the-importance-of-monitoring-in-devops/) +- [Understanding Continuous Monitoring in DevOps?](https://medium.com/devopscurry/understanding-continuous-monitoring-in-devops-f6695b004e3b) +- [DevOps Monitoring Tools](https://www.youtube.com/watch?v=Zu53QQuYqJ0) +- [Top 5 - DevOps Monitoring Tools](https://www.youtube.com/watch?v=4t71iv_9t_4) +- [How Prometheus Monitoring works](https://www.youtube.com/watch?v=h4Sl21AKiDg) +- [Introduction to Prometheus monitoring](https://www.youtube.com/watch?v=5o37CGlNLr8) + +See you on [Day 78](day78.md) diff --git a/zh_tw/Days/day78.md b/zh_tw/Days/day78.md new file mode 100644 index 000000000..ef78ebcf2 --- /dev/null +++ b/zh_tw/Days/day78.md @@ -0,0 +1,96 @@ +--- +title: '#90DaysOfDevOps - Hands-On Monitoring Tools - Day 78' +published: false +description: 90DaysOfDevOps - Hands-On Monitoring Tools +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049056 +--- +## Hands-On Monitoring Tools + +In the last session, I spoke about the big picture of monitoring and I took a look into Nagios, there was two reasons for doing this. The first was this is a peice of software I have heard a lot of over the years so wanted to know a little more about its capabilities. + +Today I am going to be going into Prometheus, I have seen more and more of Prometheus in the Cloud-Native landscape but it can also be used to look after those physical resources as well outside of Kubernetes and the like. + +### Prometheus - Monitors nearly everything + +First of all Prometheus is Open-Source that can help you monitor containers and microservice based systems as well as physical, virtual and other services. There is a large community behind Prometheus. + +Prometheus has a large array of [integrations and exporters](https://prometheus.io/docs/instrumenting/exporters/) The key being to exporting existing metrics as prometheus metrics. On top of this it also supports multiple proagramming languages. + +Pull approach - If you are talking to thousands of microservices or systems and services a push method is going to be where you generally see the service pushing to the monitoring system. This brings some challenges around flooding the network, high cpu and also a single point of failure. Where Pull gives us a much better experience where Prometheus will pull from the metrics endpoint on every service. + +Once again we see YAML for configuration for Prometheus. + +![](https://cdn.jsdelivr.net/gh/prometheus/prometheus@c34257d069c630685da35bcef084632ffd5d6209/documentation/images/architecture.svg) + +Later on you are going to see how this looks when deployed into Kubernetes, in particular we have the **PushGateway** which pulls our metrics from our jobs/exporters. + +We have the **AlertManager** which pushes alerts and this is where we can integrate into external services such as email, slack and other tooling. + +Then we have the Prometheus server which manages the retrieval of those pull metrics from the PushGateway and then sends those push alerts to the AlertManager. The Prometheus server also stores data on a local disk. Although can leverage remote storage solutions. + +We then also have PromQL which is the language used to interact with the metrics, this can be seen later on with the Prometheus Web UI but you will also see later on in this section how this is also used within Data visualisation tools such as Grafana. + +### Ways to Deploy Prometheus + +Various ways of installing Prometheus, [Download Section](https://prometheus.io/download/) Docker images are also available. + +`docker run --name prometheus -d -p 127.0.0.1:9090:9090 prom/prometheus` + +But we are going to focus our efforts on deploying to Kubernetes. Which also has some options. + +- Create configuration YAML files +- Using an Operator (manager of all prometheus components) +- Using helm chart to deploy operator + +### Deploying to Kubernetes + +We will be using our minikube cluster locally again for this quick and simple installation. As with previous touch points with minikube, we will be using helm to deploy the Prometheus helm chart. + +`helm repo add prometheus-community https://prometheus-community.github.io/helm-charts` + +![](Images/Day78_Monitoring1.png) + +As you can see from the above we have also ran a helm repo update, we are now ready to deploy Prometheus into our minikube environment using the `helm install stable prometheus-community/prometheus` command. + +![](Images/Day78_Monitoring2.png) + +After a couple of minutes you will see a number of new pods appear, for this demo I have deployed into the default namespace, I would normally push this to its own namespace. + +![](Images/Day78_Monitoring3.png) + +Once all the pods are running we can also take a look at all the deployed aspects of Prometheus. + +![](Images/Day78_Monitoring4.png) + +Now for us to access the Prometheus Server UI we can use the following command to port forward. + +``` +export POD_NAME=$(kubectl get pods --namespace default -l "app=prometheus,component=server" -o jsonpath="{.items[0].metadata.name}") + kubectl --namespace default port-forward $POD_NAME 9090 +``` +When we first open our browser to http://localhost:9090 we see the following very blank screen. + +![](Images/Day78_Monitoring5.png) + +Because we have deployed to our Kubernetes cluster we will automatically be picking up metrics from our Kubernetes API so we can use some PromQL to at least make sure we are capturing metrics `container_cpu_usage_seconds_total` + +![](Images/Day78_Monitoring6.png) + +Short on learning PromQL and putting that into practice this is very much like I mentioned previously in that gaining metrics is great, so is monitoring but you have to know what you are monitoring and why and what you are not monitoring and why! + +I want to come back to Prometheus but for now I think we need to think about Log Management and Data Visualisation to bring us back to Prometheus later on. + +## Resources + +- [The Importance of Monitoring in DevOps](https://www.devopsonline.co.uk/the-importance-of-monitoring-in-devops/) +- [Understanding Continuous Monitoring in DevOps?](https://medium.com/devopscurry/understanding-continuous-monitoring-in-devops-f6695b004e3b) +- [DevOps Monitoring Tools](https://www.youtube.com/watch?v=Zu53QQuYqJ0) +- [Top 5 - DevOps Monitoring Tools](https://www.youtube.com/watch?v=4t71iv_9t_4) +- [How Prometheus Monitoring works](https://www.youtube.com/watch?v=h4Sl21AKiDg) +- [Introduction to Prometheus monitoring](https://www.youtube.com/watch?v=5o37CGlNLr8) +- [Promql cheat sheet with examples](https://www.containiq.com/post/promql-cheat-sheet-with-examples) + +See you on [Day 79](day79.md) diff --git a/zh_tw/Days/day79.md b/zh_tw/Days/day79.md new file mode 100644 index 000000000..d941e1a2a --- /dev/null +++ b/zh_tw/Days/day79.md @@ -0,0 +1,81 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: Log Management - Day 79' +published: false +description: 90DaysOfDevOps - The Big Picture Log Management +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049057 +--- +## The Big Picture: Log Management + +A continuation to the infrastructure monitoring challenges and solutions, log management is another puzzle peice to the overall observability jigsaw. + +### Log Management & Aggregation + +Let's talk about two core concepts the first of which is log aggregation and it's a way of collecting and tagging application logs from many different services and to a single dashboard that can easily be searched. + +One of the first systems that have to be built out in an application performance management system is log aggregation. Application performance management is the part of the devops lifecycle where things have been built and deployed and you need to make sure that they're continuously working so they have enough resources allocated to them and errors aren't being shown to users. In most production deployments there are many related events that emit logs across services at google a single search might hit ten different services before being returned to the user if you got unexpected search results that might mean a logic problem in any of the ten services and log aggregation helps companies like google diagnose problems in production, they've built a single dashboard where they can map every request to unique id so if you search something your search will get a unique id and then every time that search is passing through a different service that service will connect that id to what they're currently doing. + +This is the essence of a good log aggregation platform efficiently collect logs from everywhere that emits them and make them easily searchable in the case of a fault again. + +### Example App + +Our example application is a web app, we have a typical front end and backend storing our critical data to a MongoDB database. + +If a user told us the page turned all white and printed an error message we would be hard-pressed to diagnose the problem with our current stack the user would need to manually send us the error and we'd need to match it with relevant logs in the other three services. + +### ELK + +Let's take a look at ELK, a popular open source log aggregation stack named after its three components elasticsearch, logstash and kibana if we installed it in the same environment as our example app. + +The web application would connect to the frontend which then connects to the backend, the backend would send logs to logstash and then the way that these three components work + +### The components of elk + +Elasticsearch, logstash and Kibana is that all of services send logs to logstash, logstash takes these logs which are text emitted by the application. For example the web application when you visit a web page, the web page might log this visitor access to this page at this time and that's an example of a log message those logs would be sent to logstash. + +Logstash would then extract things from them so for that log message user did **thing**, at **time**. It would extract the time and extract the message and extract the user and include those all as tags so the message would be an object of tags and message so that you could search them easily you could find all of the requests made by a specific user but logstash doesn't store things itself it stores things in elasticsearch which is a efficient database for querying text and elasticsearch exposes the results as Kibana and Kibana is a web server that connects to elasticsearch and allows administrators as the devops person or other people on your team, the on-call engineer to view the logs in production whenever there's a major fault. You as the administrator would connect to Kibana, Kibana would query elasticsearch for logs matching whatever you wanted. + +You could say hey Kibana in the search bar I want to find errors and kibana would say elasticsearch find the messages which contain the string error and then elasticsearch would return results that had been populated by logstash. Logstash would have been sent those results from all of the other services. + +### how would we use elk to diagnose a production problem + +A user says i saw error code one two three four five six seven when i tried to do this with elk setup we'd have to go to kibana enter one two three four five six seven in the search bar press enter and then that would show us the logs that corresponded to that and one of the logs might say internal server error returning one two three four five six seven and we'd see that the service that emitted that log was the backend and we'd see what time that log was emitted at so we could go to the time in that log and we could look at the messages above and below it in the backend and then we could see a better picture of what happened for the user's request and we'd be able to repeat this process going to other services until we found what actually caused the problem for the user. + +### Security and Access to Logs + +An important peice of the puzzle is ensuring that logs are only visible to administrators (or the users and groups that absolutely need to have access), logs can contain sensitive information like tokens it's important that only authenticated users can access them you wouldn't want to expose Kibana to the internet without some way of authenticating. + +### Examples of Log Management Tools + +Examples of log management platforms there's + +- Elasticsearch +- Logstash +- Kibana +- Fluentd - popular open source choice +- Datadog - hosted offering, commonly used at larger enterprises, +- LogDNA - hosted offering +- Splunk + +Cloud providers also provide logging such as AWS CloudWatch Logs, Microsoft Azure Monitor and Google Cloud Logging. + + +Log Management is a key aspect of the overall observability of your applications and instracture environment for diagnosing problems in production it's relatively simple to install a turnkey solution like ELK or CloudWatch and it makes diagnosing and triaging problems in production significantly easier. + +## Resources + +- [The Importance of Monitoring in DevOps](https://www.devopsonline.co.uk/the-importance-of-monitoring-in-devops/) +- [Understanding Continuous Monitoring in DevOps?](https://medium.com/devopscurry/understanding-continuous-monitoring-in-devops-f6695b004e3b) +- [DevOps Monitoring Tools](https://www.youtube.com/watch?v=Zu53QQuYqJ0) +- [Top 5 - DevOps Monitoring Tools](https://www.youtube.com/watch?v=4t71iv_9t_4) +- [How Prometheus Monitoring works](https://www.youtube.com/watch?v=h4Sl21AKiDg) +- [Introduction to Prometheus monitoring](https://www.youtube.com/watch?v=5o37CGlNLr8) +- [Promql cheat sheet with examples](https://www.containiq.com/post/promql-cheat-sheet-with-examples) +- [Log Management for DevOps | Manage application, server, and cloud logs with Site24x7](https://www.youtube.com/watch?v=J0csO_Shsj0) +- [Log Management what DevOps need to know](https://devops.com/log-management-what-devops-teams-need-to-know/) +- [What is ELK Stack?](https://www.youtube.com/watch?v=4X0WLg05ASw) +- [Fluentd simply explained](https://www.youtube.com/watch?v=5ofsNyHZwWE&t=14s) + +See you on [Day 80](day80.md) diff --git a/zh_tw/Days/day80.md b/zh_tw/Days/day80.md new file mode 100644 index 000000000..131ac6ba3 --- /dev/null +++ b/zh_tw/Days/day80.md @@ -0,0 +1,108 @@ +--- +title: '#90DaysOfDevOps - ELK Stack - Day 80' +published: false +description: 90DaysOfDevOps - ELK Stack +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048746 +--- +## ELK Stack + +In this session, we are going to get a little more hands-on with some of the options we have mentioned. + +### ELK Stack + +ELK Stack is the combination of 3 separate tools: + +- [Elasticsearch](https://www.elastic.co/what-is/elasticsearch) is a distributed, free and open search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured. + +- [Logstash](https://www.elastic.co/logstash/) is a free and open server-side data processing pipeline that ingests data from a multitude of sources, transforms it, and then sends it to your favorite "stash." + +- [Kibana](https://www.elastic.co/kibana/) is a free and open user interface that lets you visualize your Elasticsearch data and navigate the Elastic Stack. Do anything from tracking query load to understanding the way requests flow through your apps. + +ELK stack lets us reliably and securely take data from any source, in any format, then search, analyze, and visualize it in real time. + +On top of the above mentioned components you might also see Beats which are lightweight agents that are installed on edge hosts to collect different types of data for forwarding into the stack. + + +- Logs: Server logs that need to be analyzed are identified + +- Logstash: Collect logs and events data. It even parses and transforms data + +- ElasticSearch: The transformed data from Logstash is Store, Search, and indexed. + +- Kibana uses Elasticsearch DB to Explore, Visualize, and Share + +![](https://www.guru99.com/images/tensorflow/082918_1504_ELKStackTut1.png) + +[Picture taken from Guru99](https://www.guru99.com/elk-stack-tutorial.html) + +A good resource explaining this [The Complete Guide to the ELK Stack](https://logz.io/learn/complete-guide-elk-stack/) + +With the addition of beats the ELK Stack is also now known as Elastic Stack. + +For the hands-on scenario there are many places you can deploy the Elastic Stack but we are going to be using docker compose to deploy locally on our system. + +[Start the Elastic Stack with Docker Compose](https://www.elastic.co/guide/en/elastic-stack-get-started/current/get-started-stack-docker.html#get-started-docker-tls) + +![](Images/Day80_Monitoring1.png) + +You will find the original files and walkthrough that I used here [ deviantony/docker-elk](https://github.com/deviantony/docker-elk) + +Now we can run `docker-compose up -d`, the first time this has been ran will require the pulling of images. + +![](Images/Day80_Monitoring2.png) + +If you follow either this repository or the one that I used you will have either have the password of "changeme" or in my repository the password of "90DaysOfDevOps". The username is "elastic" + +After a few minutes we can navigate to http://localhost:5601/ which is our Kibana server / Docker container. + +![](Images/Day80_Monitoring3.png) + +Your initial home screen is going to look something like this. + +![](Images/Day80_Monitoring4.png) + +Under the section titled "Get started by adding integrations" there is a "try sample data" click this and we can add one of the shown below. + +![](Images/Day80_Monitoring5.png) + +I am going to select "Sample web logs" but this is really to get a look and feel of what data sets you can get into the ELK stack. + +When you have selected "Add Data" it takes a while to populate some of that data and then you have the "View Data" option and a list of the available ways to view that data in the drop down. + +![](Images/Day80_Monitoring6.png) + +As it states on the dashboard view: + +**Sample Logs Data** + +*This dashboard contains sample data for you to play with. You can view it, search it, and interact with the visualizations. For more information about Kibana, check our docs.* + +![](Images/Day80_Monitoring7.png) + +This is using Kibana to visualise data that has been added into ElasticSearch via Logstash. This is not the only option but I personally wanted to deploy and look at this. + +We are going to cover Grafana at some point and you are going to see some data visualisation similarities between the two, you have also seen Prometheus. + +The key takeaway I have had between the Elastic Stack and Prometheus + Grafana is that Elastic Stack or ELK Stack is focused on Logs and Prometheus is focused on metrics. + +I was reading this article from MetricFire [Prometheus vs. ELK](https://www.metricfire.com/blog/prometheus-vs-elk/) to get a better understanding of the different offerings. + +## Resources + +- [Understanding Logging: Containers & Microservices](https://www.youtube.com/watch?v=MMVdkzeQ848) +- [The Importance of Monitoring in DevOps](https://www.devopsonline.co.uk/the-importance-of-monitoring-in-devops/) +- [Understanding Continuous Monitoring in DevOps?](https://medium.com/devopscurry/understanding-continuous-monitoring-in-devops-f6695b004e3b) +- [DevOps Monitoring Tools](https://www.youtube.com/watch?v=Zu53QQuYqJ0) +- [Top 5 - DevOps Monitoring Tools](https://www.youtube.com/watch?v=4t71iv_9t_4) +- [How Prometheus Monitoring works](https://www.youtube.com/watch?v=h4Sl21AKiDg) +- [Introduction to Prometheus monitoring](https://www.youtube.com/watch?v=5o37CGlNLr8) +- [Promql cheat sheet with examples](https://www.containiq.com/post/promql-cheat-sheet-with-examples) +- [Log Management for DevOps | Manage application, server, and cloud logs with Site24x7](https://www.youtube.com/watch?v=J0csO_Shsj0) +- [Log Management what DevOps need to know](https://devops.com/log-management-what-devops-teams-need-to-know/) +- [What is ELK Stack?](https://www.youtube.com/watch?v=4X0WLg05ASw) +- [Fluentd simply explained](https://www.youtube.com/watch?v=5ofsNyHZwWE&t=14s) + +See you on [Day 81](day81.md) diff --git a/zh_tw/Days/day81.md b/zh_tw/Days/day81.md new file mode 100644 index 000000000..f252d3680 --- /dev/null +++ b/zh_tw/Days/day81.md @@ -0,0 +1,168 @@ +--- +title: '#90DaysOfDevOps - Fluentd & FluentBit - Day 81' +published: false +description: 90DaysOfDevOps - Fluentd & FluentBit +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048716 +--- +## Fluentd & FluentBit + +Another data collector that I wanted to explore as part of this observability section was [Fluentd](https://docs.fluentd.org/). An Open-Source unified logging layer. + +Fluentd has four key features that makes it suitable to build clean, reliable logging pipelines: + +Unified Logging with JSON: Fluentd tries to structure data as JSON as much as possible. This allows Fluentd to unify all facets of processing log data: collecting, filtering, buffering, and outputting logs across multiple sources and destinations. The downstream data processing is much easier with JSON, since it has enough structure to be accessible without forcing rigid schemas. + +Pluggable Architecture: Fluentd has a flexible plugin system that allows the community to extend its functionality. Over 300 community-contributed plugins connect dozens of data sources to dozens of data outputs, manipulating the data as needed. By using plugins, you can make better use of your logs right away. + +Minimum Resources Required: A data collector should be lightweight so that it runs comfortably on a busy machine. Fluentd is written in a combination of C and Ruby, and requires minimal system resources. The vanilla instance runs on 30-40MB of memory and can process 13,000 events/second/core. + +Built-in Reliability: Data loss should never happen. Fluentd supports memory- and file-based buffering to prevent inter-node data loss. Fluentd also supports robust failover and can be set up for high availability. + +[Installing Fluentd](https://docs.fluentd.org/quickstart#step-1-installing-fluentd) + +### How apps log data? + +- Write to files. `.log` files (difficult to analyse without a tool and at scale) +- Log directly to a database (each application must be configured with the correct format) +- Third party applications (NodeJS, NGINX, PostgreSQL) + +This is why we want a unified logging layer. + +FluentD allows for the 3 logging data types shown above and gives us the ability to collect, process and send those to a destination, this could be sending them logs to Elastic, MongoDB, Kafka databases for example. + +Any Data, Any Data source can be sent to FluentD and that can be sent to any destination. FluentD is not tied to any particular source or destination. + +In my research of Fluentd I kept stumbling across Fluent bit as another option and it looks like if you were looking to deploy a logging tool into your Kubernetes environment then fluent bit would give you that capability, even though fluentd can also be deployed to containers as well as servers. + +[Fluentd & Fluent Bit](https://docs.fluentbit.io/manual/about/fluentd-and-fluent-bit) + +Fluentd and Fluentbit will use the input plugins to transform that data to Fluent Bit format, then we have output plugins to whatever that output target is such as elasticsearch. + +We can also use tags and matches between configurations. + +I cannot see a good reason for using fluentd and it sems that Fluent Bit is the best way to get started. Although they can be used together in some architectures. + +### Fluent Bit in Kubernetes + +Fluent Bit in Kubernetes is deployed as a DaemonSet, which means it will run on each node in the cluster. Each Fluent Bit pod on each node will then read each container on that node and gather all of the logs available. It will also gather the metadata from the Kubernetes API Server. + +Kubernetes annotations can be used within the configuration YAML of our applications. + + +First of all we can deploy from the fluent helm repository. `helm repo add fluent https://fluent.github.io/helm-charts` and then install using the `helm install fluent-bit fluent/fluent-bit` command. + +![](Images/Day81_Monitoring1.png) + +In my cluster I am also running prometheus in my default namespace (for test purposes) we need to make sure our fluent-bit pod is up and running. we can do this using `kubectl get all | grep fluent` this is going to show us our running pod, service and daemonset that we mentioned earlier. + +![](Images/Day81_Monitoring2.png) + +So that fluentbit knows where to get logs from we have a configuration file, in this Kubernetes deployment of fluentbit we have a configmap which resembles the configuration file. + +![](Images/Day81_Monitoring3.png) + +That ConfigMap will look something like: + +``` +Name: fluent-bit +Namespace: default +Labels: app.kubernetes.io/instance=fluent-bit + app.kubernetes.io/managed-by=Helm + app.kubernetes.io/name=fluent-bit + app.kubernetes.io/version=1.8.14 + helm.sh/chart=fluent-bit-0.19.21 +Annotations: meta.helm.sh/release-name: fluent-bit + meta.helm.sh/release-namespace: default + +Data +==== +custom_parsers.conf: +---- +[PARSER] + Name docker_no_time + Format json + Time_Keep Off + Time_Key time + Time_Format %Y-%m-%dT%H:%M:%S.%L + +fluent-bit.conf: +---- +[SERVICE] + Daemon Off + Flush 1 + Log_Level info + Parsers_File parsers.conf + Parsers_File custom_parsers.conf + HTTP_Server On + HTTP_Listen 0.0.0.0 + HTTP_Port 2020 + Health_Check On + +[INPUT] + Name tail + Path /var/log/containers/*.log + multiline.parser docker, cri + Tag kube.* + Mem_Buf_Limit 5MB + Skip_Long_Lines On + +[INPUT] + Name systemd + Tag host.* + Systemd_Filter _SYSTEMD_UNIT=kubelet.service + Read_From_Tail On + +[FILTER] + Name kubernetes + Match kube.* + Merge_Log On + Keep_Log Off + K8S-Logging.Parser On + K8S-Logging.Exclude On + +[OUTPUT] + Name es + Match kube.* + Host elasticsearch-master + Logstash_Format On + Retry_Limit False + +[OUTPUT] + Name es + Match host.* + Host elasticsearch-master + Logstash_Format On + Logstash_Prefix node + Retry_Limit False + +Events: +``` + +We can now port-forward our pod to our localhost to ensure that we have connectivity. Firstly get the name of your pod with `kubectl get pods | grep fluent` and then use `kubectl port-forward fluent-bit-8kvl4 2020:2020` open a web browser to http://localhost:2020/ + +![](Images/Day81_Monitoring4.png) + +I also found this really great medium article covering more about [Fluent Bit](https://medium.com/kubernetes-tutorials/exporting-kubernetes-logs-to-elasticsearch-using-fluent-bit-758e8de606af) + +## Resources + +- [Understanding Logging: Containers & Microservices](https://www.youtube.com/watch?v=MMVdkzeQ848) +- [The Importance of Monitoring in DevOps](https://www.devopsonline.co.uk/the-importance-of-monitoring-in-devops/) +- [Understanding Continuous Monitoring in DevOps?](https://medium.com/devopscurry/understanding-continuous-monitoring-in-devops-f6695b004e3b) +- [DevOps Monitoring Tools](https://www.youtube.com/watch?v=Zu53QQuYqJ0) +- [Top 5 - DevOps Monitoring Tools](https://www.youtube.com/watch?v=4t71iv_9t_4) +- [How Prometheus Monitoring works](https://www.youtube.com/watch?v=h4Sl21AKiDg) +- [Introduction to Prometheus monitoring](https://www.youtube.com/watch?v=5o37CGlNLr8) +- [Promql cheat sheet with examples](https://www.containiq.com/post/promql-cheat-sheet-with-examples) +- [Log Management for DevOps | Manage application, server, and cloud logs with Site24x7](https://www.youtube.com/watch?v=J0csO_Shsj0) +- [Log Management what DevOps need to know](https://devops.com/log-management-what-devops-teams-need-to-know/) +- [What is ELK Stack?](https://www.youtube.com/watch?v=4X0WLg05ASw) +- [Fluentd simply explained](https://www.youtube.com/watch?v=5ofsNyHZwWE&t=14s) +- [ Fluent Bit explained | Fluent Bit vs Fluentd ](https://www.youtube.com/watch?v=B2IS-XS-cc0) + + +See you on [Day 82](day82.md) + diff --git a/zh_tw/Days/day82.md b/zh_tw/Days/day82.md new file mode 100644 index 000000000..954c5b38a --- /dev/null +++ b/zh_tw/Days/day82.md @@ -0,0 +1,112 @@ +--- +title: '#90DaysOfDevOps - EFK Stack - Day 82' +published: false +description: 90DaysOfDevOps - EFK Stack +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049059 +--- +### EFK Stack + +In the previous section, we spoke about ELK Stack, which uses Logstash as the log collector in the stack, in the EFK Stack we are swapping that out for FluentD or FluentBit. + +Our mission in this section is to monitor our Kubernetes logs using EFK. + +### Overview of EFK + +We will be deploying the following into our Kubernetes cluster. + +![](Images/Day82_Monitoring1.png) + +The EFK stack is a collection of 3 software bundled together, including: + +- Elasticsearch : NoSQL database is used to store data and provides interface for searching and query log. + +- Fluentd : Fluentd is an open source data collector for unified logging layer. Fluentd allows you to unify data collection and consumption for a better use and understanding of data. + +- Kibana : Interface for managing and statistics logs. Responsible for reading information from elasticsearch . + +### Deploying EFK on Minikube + +We will be using our trusty minikube cluster to deploy our EFK stack. Let's start a cluster using `minikube start` on our system. I am using a Windows OS with WSL2 enabled. + +![](Images/Day82_Monitoring2.png) + +I have created [efk-stack.yaml](Days/Monitoring/../../Monitoring/EFK%20Stack/efk-stack.yaml) which contains everything we need to deploy the EFK stack into our cluster, using the `kubectl create -f efk-stack.yaml` command we can see everything being deployed. + +![](Images/Day82_Monitoring3.png) + +Depending on your system and if you have ran this already and have images pulled you should now watch the pods into a ready state before we can move on, you can check the progress with the following command. `kubectl get pods -n kube-logging -w` This can take a few minutes. + +![](Images/Day82_Monitoring4.png) + +The above command lets us keep an eye on things but I like to clarify that things are all good by just running the following `kubectl get pods -n kube-logging` command to ensure all pods are now up and running. + +![](Images/Day82_Monitoring5.png) + +Once we have all our pods up and running and at this stage we should see +- 3 pods associated to ElasticSearch +- 1 pod associated to Fluentd +- 1 pod associated to Kibana + +We can also use `kubectl get all -n kube-logging` to show all in our namespace, fluentd as explained previously is deployed as a daemonset, kibana as a deployment and Elasticsearch as a statefulset. + +![](Images/Day82_Monitoring6.png) + +Now all of our pods are up and running we can now issue in a new terminal the port-forward command so that we can access our kibana dashboard. Note that your pod name will be different to the command we see here. `kubectl port-forward kibana-84cf7f59c-v2l8v 5601:5601 -n kube-logging` + +![](Images/Day82_Monitoring7.png) + +We can now open up a browser and navigate to this address, http://localhost:5601 you will be greeted with either the screen you see below or you might indeed see a sample data screen or continue and configure yourself. Either way and by all means look at that test data, it is what we covered when we looked at the ELK stack in a previous session. + +![](Images/Day82_Monitoring8.png) + +Next, we need to hit the "discover" tab on the left menu and add "*" to our index pattern. Continue to the next step by hitting "Next step". + +![](Images/Day82_Monitoring9.png) + +On Step 2 of 2, we are going to use the @timestamp option from the dropdown as this will filter our data by time. When you hit create pattern it might take a few seconds to complete. + +![](Images/Day82_Monitoring10.png) + +If we now head back to our "discover" tab after a few seconds you should start to see data coming in from your Kubernetes cluster. + +![](Images/Day82_Monitoring11.png) + +Now that we have the EFK stack up and running and we are gathering logs from our Kubernetes cluster via Fluentd we can also take a look at other sources we can choose from, if you navigate to the home screen by hitting the Kibana logo in the top left you will be greeted with the same page we saw when we first logged in. + +We have the ability to add APM, Log data, metric data and security events from other plugins or sources. + +![](Images/Day82_Monitoring12.png) + +If we select "Add log data" then we can see below that we have a lot of choices on where we want to get our logs from, you can see that Logstash is mentioned there which is part of the ELK stack. + +![](Images/Day82_Monitoring13.png) + +Under the metrics data you will find that you can add sources for Prometheus and lots of other services. + +### APM (Application Performance Monitoring) + +There is also the option to gather APM (Application Performance Monitoring) which collects in-depth performance metrics and errors from inside your application. It allows you to monitor the performance of thousands of applications in real time. + +I am not going to get into APM here but you can find out more on the [Elastic site](https://www.elastic.co/observability/application-performance-monitoring) + + +## Resources + +- [Understanding Logging: Containers & Microservices](https://www.youtube.com/watch?v=MMVdkzeQ848) +- [The Importance of Monitoring in DevOps](https://www.devopsonline.co.uk/the-importance-of-monitoring-in-devops/) +- [Understanding Continuous Monitoring in DevOps?](https://medium.com/devopscurry/understanding-continuous-monitoring-in-devops-f6695b004e3b) +- [DevOps Monitoring Tools](https://www.youtube.com/watch?v=Zu53QQuYqJ0) +- [Top 5 - DevOps Monitoring Tools](https://www.youtube.com/watch?v=4t71iv_9t_4) +- [How Prometheus Monitoring works](https://www.youtube.com/watch?v=h4Sl21AKiDg) +- [Introduction to Prometheus monitoring](https://www.youtube.com/watch?v=5o37CGlNLr8) +- [Promql cheat sheet with examples](https://www.containiq.com/post/promql-cheat-sheet-with-examples) +- [Log Management for DevOps | Manage application, server, and cloud logs with Site24x7](https://www.youtube.com/watch?v=J0csO_Shsj0) +- [Log Management what DevOps need to know](https://devops.com/log-management-what-devops-teams-need-to-know/) +- [What is ELK Stack?](https://www.youtube.com/watch?v=4X0WLg05ASw) +- [Fluentd simply explained](https://www.youtube.com/watch?v=5ofsNyHZwWE&t=14s) + +See you on [Day 83](day83.md) + diff --git a/zh_tw/Days/day83.md b/zh_tw/Days/day83.md new file mode 100644 index 000000000..403fbc3a0 --- /dev/null +++ b/zh_tw/Days/day83.md @@ -0,0 +1,150 @@ +--- +title: '#90DaysOfDevOps - Data Visualisation - Grafana - Day 83' +published: false +description: 90DaysOfDevOps - Data Visualisation - Grafana +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048767 +--- +## Data Visualisation - Grafana + +We saw a lot of Kibana over this section around Observability. But we have to also take some time to cover Grafana. But also they are not the same and they are not completely competing against each other. + +Kibana’s core feature is data querying and analysis. Using various methods, users can search the data indexed in Elasticsearch for specific events or strings within their data for root cause analysis and diagnostics. Based on these queries, users can use Kibana’s visualisation features which allow users to visualize data in a variety of different ways, using charts, tables, geographical maps and other types of visualizations. + +Grafana actually started as a fork of Kibana, Grafana had an aim to supply support for metrics aka monitoring, which at that time Kibana did not provide. + +Grafana is a free and Open-Source data visualisation tool. We commonly see Prometheus and Grafana together out in the field but we might also see Grafana alongside Elasticsearch and Graphite. + +The key difference between the two tools is Logging vs Monitoring, we started the section off covering monitoring with Nagios and then into Prometheus before moving into Logging where we covered the ELK and EFK stacks. + +Grafana caters to analysing and visualising metrics such as system CPU, memory, disk and I/O utilisation. The platform does not allow full-text data querying. Kibana runs on top of Elasticsearch and is used primarily for analyzing log messages. + +As we have already discovered with Kibana it is quite easy to deploy as well as having the choice of where to deploy, this is the same for Grafana. + +Both support installation on Linux, Mac, Windows, Docker or building from source. + +There are no doubt others but Grafana is a tool that I have seen spanning the virtual, cloud and cloud-native platforms so I wanted to cover this here in this section. + +### Prometheus Operator + Grafana Deployment + +We have covered Prometheus already in this section but as we see these paired so often I wanted to spin up an environment that would allow us to at least see what metrics we could have displayed in a visualisation. We know that monitoring our environments is important but going through those metrics alone in Prometheus or any metric tool is going to be cumbersome and it is not going to scale. This is where Grafana comes in and provides us that interactive visualisation of those metrics collected and stored in the Prometheus database. + +With that visualisation we can create custom charts, graphs and alerts for our environment. In this walkthrough we will be using our minikube cluster. + +We are going to start by cloning this down to our local system. Using `git clone https://github.com/prometheus-operator/kube-prometheus.git` and `cd kube-prometheus` + +![](Images/Day83_Monitoring1.png) + +First job is to create our namespace within our minikube cluster `kubectl create -f manifests/setup` if you have not been following along in previous sections we can use `minikube start` to bring up a new cluster here. + +![](Images/Day83_Monitoring2.png) + +Next we are going to deploy everything we need for our demo using the `kubectl create -f manifests/` command, as you can see this is going to deploy a lot of different resources within our cluster. + +![](Images/Day83_Monitoring3.png) + +We then need to wait for our pods to come up and being in the running state we can use the `kubectl get pods -n monitoring -w` command to keep an eye on the pods. + +![](Images/Day83_Monitoring4.png) + +When everything is running we can check all pods are in a running and healthy state using the `kubectl get pods -n monitoring` command. + +![](Images/Day83_Monitoring5.png) + +With the deployment, we deployed a number of services that we are going to be using later on in the demo you can check these by using the `kubectl get svc -n monitoring` command. + +![](Images/Day83_Monitoring6.png) + +And finally lets check on all resources deployed in our new monitoring namespace using the `kubectl get all -n monitoring` command. + +![](Images/Day83_Monitoring7.png) + +Opening a new terminal we are now ready to access our Grafana tool and start gathering and visualising some of our metrics, the command to use is`kubectl --namespace monitoring port-forward svc/grafana 3000` + +![](Images/Day83_Monitoring8.png) + +Open a browser and navigate to http://localhost:3000 you will be prompted for a username and password. + +![](Images/Day83_Monitoring9.png) +The default username and password to access is +``` +Username: admin +Password: admin +``` +However you will be asked to provide a new password at first login. The initial screen or home page you will see will give you some areas to explore as well as some useful resources to get up to speed with Grafana and its capabilities. Notice the "Add your first data source" and "create your first dashboard" widgets we will be using them later. + +![](Images/Day83_Monitoring10.png) + +You will find that there is already a prometheus data source already added to our Grafana data sources, however because we are using minikube we need to also port forward prometheus so that this is available on our localhost, opening a new terminal we can run the following command. `kubectl --namespace monitoring port-forward svc/prometheus-k8s 9090` if on the home page of Grafana we now enter into the widget "Add your first data source" and from here we are going to select Prometheus. + +![](Images/Day83_Monitoring11.png) + +For our new data source we can use the address http://localhost:9090 and we will also need to change the dropdown to browser as highlighted below. + +![](Images/Day83_Monitoring12.png) + +At the bottom of the page, we can now hit save and test. This should give us the outcome you see below if the port forward for prometheus is working. + +![](Images/Day83_Monitoring13.png) + +Head back to the home page and find the option to "Create your first dashboard" select "Add a new panel" + +![](Images/Day83_Monitoring14.png) + +You will see from below that we are already gathering from our Grafana data source, but we would like to gather metrics from our Prometheus data source, select the data source drop down and select our newly created "Prometheus-1" + +![](Images/Day83_Monitoring15.png) + +If you then select the Metrics browser you will have a long list of metrics being gathered from Prometheus related to our minikube cluster. + +![](Images/Day83_Monitoring16.png) + +For the purpose of the demo I am going to find a metric that gives us some output around our system resources, `cluster:node_cpu:ratio{}` gives us some detail on the nodes in our cluster and proves that this integration is working. + +![](Images/Day83_Monitoring17.png) + +Once you are happy with this as your visualisation then you can hit the apply button in the top right and you will then add this graph to your dashboard. Obviously you can go ahead and add additional graphs and other charts to give you the visual that you need. + +![](Images/Day83_Monitoring18.png) + +We can however take advantage of thousands of previously created dashboards that we can use so that we do not need to reinvent the wheel. + +![](Images/Day83_Monitoring19.png) + +If we do a search for Kubernetes we will see a long list of pre built dashboards that we can choose from. + +![](Images/Day83_Monitoring20.png) + +We have chosen the Kubernetes API Server dashboard and changed the data source to suit our newly added Prometheus-1 data source and we get to see some of the metrics displayed as per below. + +![](Images/Day83_Monitoring21.png) + +### Alerting + +You could also leverage the alertmanager that we deployed to then send alerts out to slack or other integrations, in order to do this you would need to port foward the alertmanager service using the below details. + +`kubectl --namespace monitoring port-forward svc/alertmanager-main 9093` +http://localhost:9093 + +That wraps up our section on all things observability, I have personally found that this section has highlighted how broad this topic is but equally how important this is for our roles and that be it metrics, logging or tracing you are going to need to have a good idea of what is happening in our broad environments moving forward, especially when they can change so dramatically with all the automation that we have already covered in the other sections. + +Next up we are going to be taking a look into data management and how DevOps principles also needs to be considered when it comes to Data Management. + +## Resources + +- [Understanding Logging: Containers & Microservices](https://www.youtube.com/watch?v=MMVdkzeQ848) +- [The Importance of Monitoring in DevOps](https://www.devopsonline.co.uk/the-importance-of-monitoring-in-devops/) +- [Understanding Continuous Monitoring in DevOps?](https://medium.com/devopscurry/understanding-continuous-monitoring-in-devops-f6695b004e3b) +- [DevOps Monitoring Tools](https://www.youtube.com/watch?v=Zu53QQuYqJ0) +- [Top 5 - DevOps Monitoring Tools](https://www.youtube.com/watch?v=4t71iv_9t_4) +- [How Prometheus Monitoring works](https://www.youtube.com/watch?v=h4Sl21AKiDg) +- [Introduction to Prometheus monitoring](https://www.youtube.com/watch?v=5o37CGlNLr8) +- [Promql cheat sheet with examples](https://www.containiq.com/post/promql-cheat-sheet-with-examples) +- [Log Management for DevOps | Manage application, server, and cloud logs with Site24x7](https://www.youtube.com/watch?v=J0csO_Shsj0) +- [Log Management what DevOps need to know](https://devops.com/log-management-what-devops-teams-need-to-know/) +- [What is ELK Stack?](https://www.youtube.com/watch?v=4X0WLg05ASw) +- [Fluentd simply explained](https://www.youtube.com/watch?v=5ofsNyHZwWE&t=14s) + +See you on [Day 84](day84.md) diff --git a/zh_tw/Days/day84.md b/zh_tw/Days/day84.md new file mode 100644 index 000000000..6397d33a8 --- /dev/null +++ b/zh_tw/Days/day84.md @@ -0,0 +1,76 @@ +--- +title: '#90DaysOfDevOps - The Big Picture: Data Management - Day 84' +published: false +description: 90DaysOfDevOps - The Big Picture Data Management +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048747 +--- +## The Big Picture: Data Management + +![](Images/Day84_Data1.png) + +Data Management is by no means a new wall to climb, although we do know that data is more important than it maybe was a few years ago. Valuable and ever changing it can also be a massive nightmare when we are talking about automation and continuously integrate, test and deploy frequent software releases. Enter the persistent data and underlying data services often the main culprit when things go wrong. + +But before I get into the Cloud-Native Data Management, we need to go up a level. We have touched on many different platforms throughout this challenge. Be it Physical, Virtual, Cloud and Cloud-Native obviously including Kubernetes there is none of these platforms that provide the lack of requirement for data management. + +Whatever our business it is more than likely you will find a database lurking in the environment somewhere, be it for the most mission critical system in the business or at least some cog in the chain is storing that persistent data on some level of system. + +### DevOps and Data + +Much like the very start of this series where we spoke about the DevOps principles, in order for a better process when it comes to data you have to include the right people. This might be the DBAs but equally that is going to include people that care about the backup of those data services as well. + +Secondly we also need to identify the different data types, domains, boundaries that we have associated with our data. This way it is not just dealt with in a silo approach amongst Database administrators, storage engineers or Backup focused engineers. This way the whole team can determine the best route of action when it comes to developing and hosting applications for the wider business and focus on the data architecture vs it being an after thought. + +Now, this can span many different areas of the data lifecycle, we could be talking about data ingest, where and how will data be ingested into our service or application? How will the service, application or users access this data. But then it also requires us to understand how we will secure the data and then how will we protect that data. + +### Data Management 101 + +Data management according to the [Data Management Body of Knowledge](https://www.dama.org/cpages/body-of-knowledge) is “the development, execution and supervision of plans, policies, programs and practices that control, protect, deliver and enhance the value of data and information assets.” + +- Data is the most important aspect of your business - Data is only one part of your overall business. I have seen the term "Data is the lifeblood of our business" and most likely absolutely true. Which then got me thinking about blood being pretty important to the body but alone it is nothing we still need the aspects of the body to make the blood something other than a liquid. + +- Data quality is more important than ever - We are having to treat data as a business asset, meaning that we have to give it the considerations it needs and requires to work with our automation and DevOps principles. + +- Accessing data in a timely fashion - Nobody has the patience to not have access to the right data at the right time to make effective decisions. Data must be available in a streamlined and timely manher regardless of presentation. + +- Data Management has to be an enabler to DevOps - I mentioned streamline previously, we have to include the data management requirements into our cycle and ensure not just availablity of that data but also include other important policy based protection of those data points along with fully tested recovery models with that as well. + +### DataOps + +Both DataOps and DevOps apply the best practices of technology development and operations to improve quality, increase speed, reduce security threats, delight customers and provide meaningful and challenging work for skilled professionals. DevOps and DataOps share goals to accelerate product delivery by automating as many process steps as possible. For DataOps, the objective is a resilient data pipeline and trusted insights from data analytics. + +Some of the most common higher level areas that focus on DataOps are going to be Machine Learning, Big Data and Data Analytics including Artifical Intelligence. + +### Data Management is the management of information + +My focus throughout this section is not going to be getting into Machine Learning or Articial Intelligence but to focus on the protecting the data from a data protection point of view, the title of this subsection is "Data management is the management of information" and we can relate that information = data. + +Three key areas that we should consider along this journey with data are: + +- Accuracy - Making sure that production data is accurate, equally we need to ensure that our data in the form of backups are also working and tested against recovery to be sure if a failure or a reason comes up we need to be able to get back up and running as fast as possible. + +- Consistent - If our data services span multiple locations then for production we need to make sure we have consistency across all data locations so that we are getting accurate data, this also spans into data protection when it comes to protecting these data services especially data services we need to ensure consistency at different levels to make sure we are taking a good clean copy of that data for our backups, replicas etc. + +- Secure - Access Control but equally just keeping data in general is a topical theme at the moment across the globe. Making sure the right people have access to your data is paramount, again this leads into data protection where we must make sure that only the required personnel have access to backups and the ability to restore from those as well clone and provide other versions of the business data. + +Better Data = Better Decisions + +### Data Management Days + +During the next 6 sessions we are going to be taking a closer look at Databases, Backup & Recovery, Disaster Recovery, Application Mobility all with an element of demo and hands on throughout. + +## Resources + +- [Kubernetes Backup and Restore made easy!](https://www.youtube.com/watch?v=01qcYSck1c4&t=217s) +- [Kubernetes Backups, Upgrades, Migrations - with Velero](https://www.youtube.com/watch?v=zybLTQER0yY) +- [7 Database Paradigms](https://www.youtube.com/watch?v=W2Z7fbCLSTw&t=520s) +- [Disaster Recovery vs. Backup: What's the difference?](https://www.youtube.com/watch?v=07EHsPuKXc0) +- [Veeam Portability & Cloud Mobility](https://www.youtube.com/watch?v=hDBlTdzE6Us&t=3s) + +See you on [Day 85](day85.md) + + + + diff --git a/zh_tw/Days/day85.md b/zh_tw/Days/day85.md new file mode 100644 index 000000000..dba8421bb --- /dev/null +++ b/zh_tw/Days/day85.md @@ -0,0 +1,149 @@ +--- +title: "#90DaysOfDevOps - Data Services - Day 85" +published: false +description: "90DaysOfDevOps - Data Services" +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048781 +--- +## Data Services + +Databases are going to be the most common data service that we come across in our environments. I wanted to take this session to explore some of those different types of Databases and some of the use cases they each have. Some we have used and seen throughout the course of the challenge. + +From an application development point of view choosing the right data service or database is going to be a huge decision when it comes to the performance and scalability of your application. + +https://www.youtube.com/watch?v=W2Z7fbCLSTw + +### Key-value + +A key-value database is a type of nonrelational database that uses a simple key-value method to store data. A key-value database stores data as a collection of key-value pairs in which a key serves as a unique identifier. Both keys and values can be anything, ranging from simple objects to complex compound objects. Key-value databases are highly partitionable and allow horizontal scaling at scales that other types of databases cannot achieve. + +An example of a Key-Value database is Redis. + +*Redis is an in-memory data structure store, used as a distributed, in-memory key–value database, cache and message broker, with optional durability. Redis supports different kinds of abstract data structures, such as strings, lists, maps, sets, sorted sets, HyperLogLogs, bitmaps, streams, and spatial indices.* + +![](Images/Day85_Data1.png) + +As you can see from the description of Redis this means that our database is fast but we are limited on space as a trade off. Also no queries or joins which means data modelling options are very limited. + +Best for: +- Caching +- Pub/Sub +- Leaderboards +- Shopping carts + +Generally used as a cache above another persistent data layer. + +### Wide Column + +A wide-column database is a NoSQL database that organises data storage into flexible columns that can be spread across multiple servers or database nodes, using multi-dimensional mapping to reference data by column, row, and timestamp. + +*Cassandra is a free and open-source, distributed, wide-column store, NoSQL database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure.* + +![](Images/Day85_Data2.png) + +No schema which means can handle unstructured data however this can be seen as a benefit to some workloads. + +Best for: +- Time-Series +- Historical Records +- High-Write, Low-Read + +### Document + +A document database (also known as a document-oriented database or a document store) is a database that stores information in documents. + +*MongoDB is a source-available cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with optional schemas. MongoDB is developed by MongoDB Inc. and licensed under the Server Side Public License.* + +![](Images/Day85_Data3.png) + +NoSQL document databases allow businesses to store simple data without using complex SQL codes. Quickly store with no compromise to reliability. + +Best for: + +- Most Applications +- Games +- Internet of Things + +### Relational + +If you are new to databases but you know of them my guess is that you have absolutely come across a relational database. + +A relational database is a digital database based on the relational model of data, as proposed by E. F. Codd in 1970. A system used to maintain relational databases is a relational database management system. Many relational database systems have an option of using the SQL for querying and maintaining the database. + +*MySQL is an open-source relational database management system. Its name is a combination of "My", the name of co-founder Michael Widenius's daughter, and "SQL", the abbreviation for Structured Query Language.* + +MySQL is one example of a relational database there are lots of other options. + +![](Images/Day85_Data4.png) + +Whilst researching relational databases the term or abbreviation **ACID** has been mentioned a lot, (atomicity, consistency, isolation, durability) is a set of properties of database transactions intended to guarantee data validity despite errors, power failures, and other mishaps. In the context of databases, a sequence of database operations that satisfies the ACID properties (which can be perceived as a single logical operation on the data) is called a transaction. For example, a transfer of funds from one bank account to another, even involving multiple changes such as debiting one account and crediting another, is a single transaction. + +Best for: +- Most Applications (It has been around for years, doesn't mean it is the best) + +It is not ideal for unstructured data or the ability to scale is where some of the other NoSQL mentions give a better ability to scale for certain workloads. + +### Graph + +A graph database stores nodes and relationships instead of tables, or documents. Data is stored just like you might sketch ideas on a whiteboard. Your data is stored without restricting it to a pre-defined model, allowing a very flexible way of thinking about and using it. + +*Neo4j is a graph database management system developed by Neo4j, Inc. Described by its developers as an ACID-compliant transactional database with native graph storage and processing* + +Best for: + +- Graphs +- Knowledge Graphs +- Recommendation Engines + +### Search Engine + +In the last section we actually used a Search Engine database in the way of Elasticsearch. + +A search-engine database is a type of non-relational database that is dedicated to the search of data content. Search-engine databases use indexes to categorise the similar characteristics among data and facilitate search capability. + +*Elasticsearch is a search engine based on the Lucene library. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents.* + +Best for: + +- Search Engines +- Typeahead +- Log search + +### Multi-model + +A multi-model database is a database management system designed to support multiple data models against a single, integrated backend. In contrast, most database management systems are organized around a single data model that determines how data can be organized, stored, and manipulated.Document, graph, relational, and key–value models are examples of data models that may be supported by a multi-model database. + +*Fauna is a flexible, developer-friendly, transactional database delivered as a secure and scalable cloud API with native GraphQL.* + +Best for: + +- You are not stuck to having to choose a data model +- ACID Compliant +- Fast +- No provisioning overhead +- How do you want to consume your data and let the cloud do the heavy lifting + +That is going to wrap up this database overview session, no matter what industry you are in you are going to come across one area of databases. We are then going to take some of these examples and look at the data management and in particular the protection and storing of these data services later on in the section. + +There are a ton of resources I have linked below, you could honestly spend 90 years probably deep diving into all database types and everything that comes with this. + +## Resources + +- [Redis Crash Course - the What, Why and How to use Redis as your primary database](https://www.youtube.com/watch?v=OqCK95AS-YE) +- [Redis: How to setup a cluster - for beginners](https://www.youtube.com/watch?v=GEg7s3i6Jak) +- [Redis on Kubernetes for beginners](https://www.youtube.com/watch?v=JmCn7k0PlV4) +- [Intro to Cassandra - Cassandra Fundamentals](https://www.youtube.com/watch?v=YjYWsN1vek8) +- [MongoDB Crash Course](https://www.youtube.com/watch?v=ofme2o29ngU) +- [MongoDB in 100 Seconds](https://www.youtube.com/watch?v=-bt_y4Loofg) +- [What is a Relational Database?](https://www.youtube.com/watch?v=OqjJjpjDRLc) +- [Learn PostgreSQL Tutorial - Full Course for Beginners](https://www.youtube.com/watch?v=qw--VYLpxG4) +- [MySQL Tutorial for Beginners [Full Course]](https://www.youtube.com/watch?v=7S_tz1z_5bA) +- [What is a graph database? (in 10 minutes)](https://www.youtube.com/watch?v=REVkXVxvMQE) +- [What is Elasticsearch?](https://www.youtube.com/watch?v=ZP0NmfyfsoM) +- [FaunaDB Basics - The Database of your Dreams](https://www.youtube.com/watch?v=2CipVwISumA) +- [Fauna Crash Course - Covering the Basics](https://www.youtube.com/watch?v=ihaB7CqJju0) + + +See you on [Day 86](day86.md) diff --git a/zh_tw/Days/day86.md b/zh_tw/Days/day86.md new file mode 100644 index 000000000..2448c6961 --- /dev/null +++ b/zh_tw/Days/day86.md @@ -0,0 +1,180 @@ +--- +title: '#90DaysOfDevOps - Backup all the platforms - Day 86' +published: false +description: 90DaysOfDevOps - Backup all the platforms +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1049058 +--- +## Backup all the platforms + +During this whole challenge we have discussed many different platforms and environments. One thing all of those have in common is the fact they all need some level of data protection! + +Data Protection has been around for many many years but the wealth of data that we have today and the value that this data brings means we have to make sure we are not only resilient to infrastructure failure by having multiple nodes and high availablity across applications but we must also consider that we need a copy of that data, that important data in a safe and secure location if a failure scenario was to occur. + +We hear a lot these days it seems about cybercrime and ransomware, and don't get me wrong this is a massive threat and I stand by the fact that you will be attacked by ransomware. It is not a matter of if it is a matter of when. So even more reason to make sure you have your data secure for when that time arises. However the most common cause for data loss is not ransomware or cybercrime it is simply accidental deletion! + +We have all done it, deleted something we shouldn't have and had that instant regret. + +With all of the technology and automation we have discussed during the challenge, the requirement to protect any stateful data or even complex stateless configuration is still there, regardless of platform. + +![](Images/Day86_Data1.png) + +But we should be able to perform that protection of the data with automation in mind and being able to integrate into our workflows. + +If we look at what backup is: + +*In information technology, a backup, or data backup is a copy of computer data taken and stored elsewhere so that it may be used to restore the original after a data loss event. The verb form, referring to the process of doing so, is "back up", whereas the noun and adjective form is "backup".* + +If we break this down to the simplest form, a backup is a copy and paste of data to a new location. Simply put I could take a backup right now by copying a file from my C: drive to my D: drive and I would then have a copy in case something happened to the C: drive or something was edited wrongly within the files. I could revert back to the copy I have on the D: drive. Now if my computer dies where both the C & D drives live then I am not protected so I have to consider a solution or a copy of data outside of my system maybe onto a NAS drive in my house? But then what happens if something happens to my house, maybe I need to consider storing it on another system in another location, maybe the cloud is an option. Maybe I could store a copy of my important files in several locations to mitigate against the risk of failure? + +### 3-2-1 Backup Methodolgy + +Now seems a good time to talk about the 3-2-1 rule or backup methodology. I actually did a [lightening talk](https://www.youtube.com/watch?v=5wRt1bJfKBw) covering this topic. + +We have already mentioned before some of the extreme ends of why we need to protect our data but a few more are listed below: + +![](Images/Day86_Data2.png) + +Which then allows me to talk about the 3-2-1 methodology. My first copy or backup of my data should be as close to my production system as possible, the reason for this is based on speed to recovery and again going back to that original point about accidental deletion this is going to be the most common reason for recovery. But I want to be storing that on a suitable second media outside of the original or production system. + +We then want to make sure we also send a copy of our data external or offsite this is where a second location comes in be it another house, building, data centre or the public cloud. + +![](Images/Day86_Data3.png) + +### Backup Responsibility + +We have most likely heard all of the myths when it comes to not having to backup, things like "Everything is stateless" I mean if everything is stateless then what is the business? no databases? word documents? Obviously there is a level of responsibility on every individual within the business to ensure they are protected but it is going to come down most likely to the operations teams to provide the backup process for the mission critical applications and data. + +Another good one is that "High availability is my backup, we have built in multiple nodes into our cluster there is no way this is going down!" apart from when you make a mistake to the database and this is replicated over all the nodes in the cluster, or there is fire, flood or blood scenario that means the cluster is no longer available and with it the important data. It's not about being stubborn it is about being aware of the data and the services, absolutely everyone should factor in high availability and fault tollerance into their architecture but that does not substitute the need for backup! + +Replication can also seem to give us the offsite copy of the data and maybe that cluster mentioned above does live across multiple locations, however the first accidental mistake would still be replicated there. But again a Backup requirement should stand alongside application replication or system replication within the environment. + +Now with all this said you can go to the extreme the other end as well and send copies of data to too many locations which is going to not only cost but also increase risk about being attacked as your surface area is now massively expanded. + +Anyway, who looks after backup? It will be different within each business but someone should be taking it upon themselves to understand the backup requirements. But also understand the recovery plan! + +### Nobody cares till everybody cares + +Backup is a prime example, nobody cares about backup until you need to restore something. Alongside the requirement to back our data up we also need to consider how we restore! + +With our text document example we are talking very small files so the ability to copy back and forth is easy and fast. But if we are talking about 100GB plus files then this is going to take time. Also we have to consider the level in which we need to recover, if we take a virtual machine for example. + +We have the whole Virtual Machine, we have the Operating System, Application installation and then if this is a database server then we will have some database files as well. If we have made a mistake and inserted the wrong line of code into our database I probably don't need to restore the whole virtual machine, I want to be granular on what I recover back. + +### Backup Scenario + +I want to now start building on a scenario to protect some data, specifically I want to protect some files on my local machine (in this case Windows but the tool I am going to use is in fact not only free and open-source but also cross platform) I would like to make sure they are protected to a NAS device I have locally in my home but also into an Object Storage bucket in the cloud. + +I want to backup this important data, it just so happens to be the repository for the 90DaysOfDevOps, which yes this is also being sent to GitHub which is probably where you are reading this now but what if my machine was to die and GitHub was down? How would anyone be able to read the content but also how would I potentially be able to restore that data to another service. + +![](Images/Day86_Data5.png) + +There are lots of tools that can help us achieve this but I am going to be using a a tool called [Kopia](https://kopia.io/) an Open-Source backup tool which will enable us to encrypt, dedupe and compress our backups whilst being able to send them to many locations. + +You will find the releases to download [here](https://github.com/kopia/kopia/releases) at the time of writing I will be using v0.10.6. + +### Installing Kopia + +There is a Kopia CLI and GUI, we will be using the GUI but know that you can have a CLI version of this as well for those Linux servers that do not give you a GUI. + +I will be using `KopiaUI-Setup-0.10.6.exe` + +Really quick next next installation and then when you open the application you are greeted with the choice of selecting your storage type that you wish to use as your backup repository. + +![](Images/Day86_Data6.png) + +### Setting up a Repository + +Firstly we would like to setup a repository using our local NAS device and we are going to do this using SMB, but we could also use NFS I believe. + +![](Images/Day86_Data7.png) + +On the next screen we are going to define a password, this password is used to encrypt the repository contents. + +![](Images/Day86_Data8.png) + +Now that we have the repository configured we can trigger an adhoc snapshot to start writing data to our it. + +![](Images/Day86_Data9.png) + +First up we need to enter a path to what we want to snapshot and our case we want to take a copy of our `90DaysOfDevOps` folder. We will get back to the scheduling aspect shortly. + +![](Images/Day86_Data10.png) + +We can define our snapshot retention. + +![](Images/Day86_Data11.png) + +Maybe there are files or file types that we wish to exclude. + +![](Images/Day86_Data12.png) + +If we wanted to define a schedule we could this on this next screen, when you first create this snapshot this is the opening page to define. + +![](Images/Day86_Data13.png) + +And you will see a number of other settings that can be handled here. + +![](Images/Day86_Data14.png) + +Select snapshot now and the data will be written to your repository. + +![](Images/Day86_Data15.png) + +### Offsite backup to S3 + +With Kopia we can through the UI it seems only have one repository configured at a time. But through the UI we can be creative and basically have multiple repository configuration files to choose from to achieve our goal of having a copy local and offsite in Object Storage. + +The Object Storage I am choosing to send my data to is going to Google Cloud Storage. I firstly logged into my Google Cloud Platform account and created myself a storage bucket. I already had the Google Cloud SDK installed on my system but running the `gcloud auth application-default login` authenticated me with my account. + +![](Images/Day86_Data16.png) + +I then used the CLI of Kopia to show me the current status of my repository after we added our SMB repository in the previous steps. I did this using the `"C:\Program Files\KopiaUI\resources\server\kopia.exe" --config-file=C:\Users\micha\AppData\Roaming\kopia\repository.config repository status` command. + +![](Images/Day86_Data17.png) + +We are now ready to replace for the purpose of the demo the configuration for the repository, what we would probably do if we wanted a long term solution to hit both of these repositories is we would create an `smb.config` file and a `object.config` file and be able to run both of these commands to send our copies of data to each location. To add our repository we ran `"C:\Program Files\KopiaUI\resources\server\kopia.exe" --config-file=C:\Users\micha\AppData\Roaming\kopia\repository.config repository create gcs --bucket 90daysofdevops` + +The above command is taking into account that the Google Cloud Storage bucket we created is called `90daysofdevops` + +![](Images/Day86_Data18.png) + +Now that we have created our new repository we can then run the `"C:\Program Files\KopiaUI\resources\server\kopia.exe" --config-file=C:\Users\micha\AppData\Roaming\kopia\repository.config repository status` command again and will now show the GCS repository configuration. + +![](Images/Day86_Data19.png) + +Next thing we need to do is create a snapshot and send that to our newly created repository. Using the `"C:\Program Files\KopiaUI\resources\server\kopia.exe" --config-file=C:\Users\micha\AppData\Roaming\kopia\repository.config kopia snapshot create "C:\Users\micha\demo\90DaysOfDevOps"` command we can kick off this process. You can see in the below browser that our Google Cloud Storage bucket now has kopia files based on our backup in place. + +![](Images/Day86_Data20.png) + +With the above process we are able to settle our requirement of sending our important data to 2 different locations, 1 of which is offsite in Google Cloud Storage and of course we still have our production copy of our data on a different media type. + +### Restore + +Restore is another consideration and is very important, Kopia gives us the capability to not only restore to the existing location but also to a new location. + +If we run the command `"C:\Program Files\KopiaUI\resources\server\kopia.exe" --config-file=C:\Users\micha\AppData\Roaming\kopia\repository.config snapshot list` this will list the snapshots that we have currently in our configured repository (GCS) + +![](Images/Day86_Data21.png) + +We can then mount those snapshots directly from GCS using the `"C:\Program Files\KopiaUI\resources\server\kopia.exe" --config-file=C:\Users\micha\AppData\Roaming\kopia\repository.config mount all Z:` command. + +![](Images/Day86_Data22.png) + +We could also restore the snapshot contents using `kopia snapshot restore kdbd9dff738996cfe7bcf99b45314e193` + +Obviously the commands above are very long and this is because I was using the KopiaUI version of the kopia.exe as explained at the top of the walkthrough you can download the kopia.exe and put into a path so you can just use the `kopia` command. + +In the next session we will be focusing in on protecting workloads within Kubernetes. + +## Resources + +- [Kubernetes Backup and Restore made easy!](https://www.youtube.com/watch?v=01qcYSck1c4&t=217s) +- [Kubernetes Backups, Upgrades, Migrations - with Velero](https://www.youtube.com/watch?v=zybLTQER0yY) +- [7 Database Paradigms](https://www.youtube.com/watch?v=W2Z7fbCLSTw&t=520s) +- [Disaster Recovery vs. Backup: What's the difference?](https://www.youtube.com/watch?v=07EHsPuKXc0) +- [Veeam Portability & Cloud Mobility](https://www.youtube.com/watch?v=hDBlTdzE6Us&t=3s) + +See you on [Day 87](day87.md) diff --git a/zh_tw/Days/day87.md b/zh_tw/Days/day87.md new file mode 100644 index 000000000..90b725541 --- /dev/null +++ b/zh_tw/Days/day87.md @@ -0,0 +1,189 @@ +--- +title: "#90DaysOfDevOps - Hands-On Backup & Recovery - Day 87" +published: false +description: "90DaysOfDevOps - Hands-On Backup & Recovery" +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048717 +--- +## Hands-On Backup & Recovery + +In the last session we touched on [Kopia](https://kopia.io/) an Open-Source backup tool that we used to get some important data off to a local NAS and off to some cloud based object storage. + +In this section, I want to get into the world of Kubernetes backup. It is a platform we covered [The Big Picture: Kubernetes](Days/day49.md) earlier in the challenge. + +We will again be using our minikube cluster but this time we are going to take advantage of some of those addons that are available. + +### Kubernetes cluster setup + +To set up our minikube cluster we will be issuing the `minikube start --addons volumesnapshots,csi-hostpath-driver --apiserver-port=6443 --container-runtime=containerd -p 90daysofdevops --kubernetes-version=1.21.2` you will notice that we are using the `volumesnapshots` and `csi-hostpath-driver` as we will take full use of these for when we are taking our backups. + +At this point I know we have not deployed Kasten K10 yet but we want to issue the following command when your cluster is up, but we want to annotate the volumesnapshotclass so that Kasten K10 can use this. + +``` +kubectl annotate volumesnapshotclass csi-hostpath-snapclass \ + k10.kasten.io/is-snapshot-class=true +``` + +We are also going to change over the default storageclass from the standard default storageclass to the csi-hostpath storageclass using the following. + +``` +kubectl patch storageclass csi-hostpath-sc -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}' + +kubectl patch storageclass standard -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"false"}}}' +``` + +![](Images/Day87_Data1.png) + +### Deploy Kasten K10 + +Add the Kasten Helm repository + +`helm repo add kasten https://charts.kasten.io/` + +We could use `arkade kasten install k10` here as well but for the purpose of the demo we will run through the following steps. [More Details](https://blog.kasten.io/kasten-k10-goes-to-the-arkade) + +Create the namespace and deploy K10, note that this will take around 5 mins + +`helm install k10 kasten/k10 --namespace=kasten-io --set auth.tokenAuth.enabled=true --set injectKanisterSidecar.enabled=true --set-string injectKanisterSidecar.namespaceSelector.matchLabels.k10/injectKanisterSidecar=true --create-namespace` + +![](Images/Day87_Data1.png) + +You can watch the pods come up by running the following command. + +`kubectl get pods -n kasten-io -w` + +![](Images/Day87_Data3.png) + +Port forward to access the K10 dashboard, open a new terminal to run the below command + +`kubectl --namespace kasten-io port-forward service/gateway 8080:8000` + +The Kasten dashboard will be available at: `http://127.0.0.1:8080/k10/#/` + +![](Images/Day87_Data4.png) + +To authenticate with the dashboard we now need the token which we can get with the following commands. + +``` +TOKEN_NAME=$(kubectl get secret --namespace kasten-io|grep k10-k10-token | cut -d " " -f 1) +TOKEN=$(kubectl get secret --namespace kasten-io $TOKEN_NAME -o jsonpath="{.data.token}" | base64 --decode) + +echo "Token value: " +echo $TOKEN +``` + +![](Images/Day87_Data5.png) + +Now we take this token and we input that into our browser, you will then be prompted for an email and company name. + +![](Images/Day87_Data6.png) + +Then we get access to the Kasten K10 dashboard. + +![](Images/Day87_Data7.png) + +### Deploy our stateful application + +Use the stateful application that we used in the Kubernetes section. + +![](Images/Day55_Kubernetes1.png) + +You can find the YAML configuration file for this application here[pacman-stateful-demo.yaml](Days/Kubernetes/pacman-stateful-demo.yaml) + +![](Images/Day87_Data8.png) + +We can use `kubectl get all -n pacman` to check on our pods coming up. + +![](Images/Day87_Data9.png) + +In a new terminal we can then port forward the pacman front end. `kubectl port-forward svc/pacman 9090:80 -n pacman` + +Open another tab on your browser to http://localhost:9090/ + +![](Images/Day87_Data10.png) + +Take the time to clock up some high scores in the backend MongoDB database. + +![](Images/Day87_Data11.png) + +### Protect our High Scores + +Now we have some mission critical data in our database and we do not want to lose it. We can use Kasten K10 to protect this whole application. + +If we head back into the Kasten K10 dashboard tab you will see that our number of application has now increased from 1 to 2 with the addition of our pacman application to our Kubernetes cluster. + +![](Images/Day87_Data12.png) + +If you click on the Applications card you will see the automatically discovered applications in our cluster. + +![](Images/Day87_Data13.png) + +With Kasten K10 we have the ability to leverage storage based snapshots as well export our copies out to object storage options. + +For the purpose of the demo, we will create a manual storage snapshot in our cluster and then we can add some rogue data to our high scores to simulate an accidental mistake being made or is it? + +Firstly we can use the manual snapshot option below. + +![](Images/Day87_Data14.png) + +For the demo I am going to leave everything as the default + +![](Images/Day87_Data15.png) + +Back on the dashboard you get a status report on the job as it is running and then when complete it should look as successful as this one. + +![](Images/Day87_Data16.png) + +### Failure Scenario + +We can now make that fatal change to our mission critical data by simply adding in a prescriptive bad change to our application. + +As you can see below we have two inputs that we probably dont want in our production mission critical database. + +![](Images/Day87_Data17.png) + +### Restore the data + +Obviously this is a simple demo and in a way not realistic although have you seen how easy it is to drop databases? + +Now we want to get that high score list looking a little cleaner and how we had it before the mistakes were made. + +Back in the Applications card and on the pacman tab we now have 1 restore point we can use to restore from. + +![](Images/Day87_Data18.png) + +When you select restore you can see all the associated snapshots and exports to that application. + +![](Images/Day87_Data19.png) + +Select that restore and a side window will appear, we will keep the default settings and hit restore. + +![](Images/Day87_Data20.png) + +Confirm that you really want to make this happen. + +![](Images/Day87_Data21.png) + +You can then go back to the dashboard and see the progress of the restore. You should see something like this. + +![](Images/Day87_Data22.png) + +But more importantly how is our High-Score list looking in our mission critical application. You will have to start the port forward again to pacman as we previously covered. + +![](Images/Day87_Data23.png) + +A super simple demo and only really touching the surface of what Kasten K10 can really achieve when it comes to backup. I will be creating some more in depth video content on some of these areas in the future. We will also be using Kasten K10 to highlight some of the other prominent areas around Data Management when it comes to Disaster Recovery and the mobility of your data. + +Next we will take a look at Application consistency. + +## Resources + +- [Kubernetes Backup and Restore made easy!](https://www.youtube.com/watch?v=01qcYSck1c4&t=217s) +- [Kubernetes Backups, Upgrades, Migrations - with Velero](https://www.youtube.com/watch?v=zybLTQER0yY) +- [7 Database Paradigms](https://www.youtube.com/watch?v=W2Z7fbCLSTw&t=520s) +- [Disaster Recovery vs. Backup: What's the difference?](https://www.youtube.com/watch?v=07EHsPuKXc0) +- [Veeam Portability & Cloud Mobility](https://www.youtube.com/watch?v=hDBlTdzE6Us&t=3s) + +See you on [Day 88](day88.md) diff --git a/zh_tw/Days/day88.md b/zh_tw/Days/day88.md new file mode 100644 index 000000000..684137697 --- /dev/null +++ b/zh_tw/Days/day88.md @@ -0,0 +1,292 @@ +--- +title: '#90DaysOfDevOps - Application Focused Backup - Day 88' +published: false +description: 90DaysOfDevOps - Application Focused Backups +tags: "devops, 90daysofdevops, learning" +cover_image: null +canonical_url: null +id: 1048749 +--- +## Application Focused Backups + +We have already spent some time talking about data services or data intensive applications such as databases on [Day 85](day85.md). For these data services we have to consider how we manage consistency, especially when it comes application consistency. + +In this post we are going to dive into that requirement around protecting the application data in a consistent manner. + +In order to do this our tool of choice will be [Kanister](https://kanister.io/) + +![](Images/Day88_Data1.png) + +### Introducing Kanister + +Kanister is an open-source project by Kasten, that enables us to manage (backup and restore) application data on Kubernetes. You can deploy Kanister as a helm application into your Kubernetes cluster. + +Kanister uses Kubernetes custom resources, the main custom resources that are installed when Kanister is deployed are + +- `Profile` - is a target location to store your backups and recover from. Most commonly this will be object storage. +- `Blueprint` - steps that are to be taken to backup and restore the database should be maintained in the Blueprint +- `ActionSet` - is the motion to move our target backup to our profile as well as restore actions. + +### Execution Walkthrough + +Before we get hands on we should take a look at the workflow that Kanister takes in protecting application data. Firstly our controller is deployed using helm into our Kubernetes cluster, Kanister lives within its own namespace. We take our Blueprint of which there are many community supported blueprints available, we will cover this in more detail shortly. We then have our database workload. + +![](Images/Day88_Data2.png) + +We then create our ActionSet. + +![](Images/Day88_Data3.png) + +The ActionSet allows us to run the actions defined in the blueprint against the specific data service. + +![](Images/Day88_Data4.png) + +The ActionSet in turns uses the Kanister functions (KubeExec, KubeTask, Resource Lifecycle) and pushes our backup to our target repository (Profile). + +![](Images/Day88_Data5.png) + +If that action is completed/failed the respective status is updated in the Actionset. + +![](Images/Day88_Data6.png) + +### Deploying Kanister + +Once again we will be using the minikube cluster to achieve this application backup. If you have it still running from the previous session then we can continue to use this. + +At the time of writing we are up to image version `0.75.0` with the following helm command we will install kanister into our Kubernetes cluster. + +`helm install kanister --namespace kanister kanister/kanister-operator --set image.tag=0.75.0 --create-namespace` + +![](Images/Day88_Data7.png) + +We can use `kubectl get pods -n kanister` to ensure the pod is up and runnnig and then we can also check our custom resource definitions are now available (If you have only installed Kanister then you will see the highlighted 3) + +![](Images/Day88_Data8.png) + +### Deploy a Database + +Deploying mysql via helm: + +``` +APP_NAME=my-production-app +kubectl create ns ${APP_NAME} +helm repo add bitnami https://charts.bitnami.com/bitnami +helm install mysql-store bitnami/mysql --set primary.persistence.size=1Gi,volumePermissions.enabled=true --namespace=${APP_NAME} +kubectl get pods -n ${APP_NAME} -w +``` +![](Images/Day88_Data9.png) + +Populate the mysql database with initial data, run the following: + +``` +MYSQL_ROOT_PASSWORD=$(kubectl get secret --namespace ${APP_NAME} mysql-store -o jsonpath="{.data.mysql-root-password}" | base64 --decode) +MYSQL_HOST=mysql-store.${APP_NAME}.svc.cluster.local +MYSQL_EXEC="mysql -h ${MYSQL_HOST} -u root --password=${MYSQL_ROOT_PASSWORD} -DmyImportantData -t" +echo MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} +``` + +### Create a MySQL CLIENT +We will run another container image to act as our client + +``` +APP_NAME=my-production-app +kubectl run mysql-client --rm --env APP_NS=${APP_NAME} --env MYSQL_EXEC="${MYSQL_EXEC}" --env MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} --env MYSQL_HOST=${MYSQL_HOST} --namespace ${APP_NAME} --tty -i --restart='Never' --image docker.io/bitnami/mysql:latest --command -- bash +``` +``` +Note: if you already have an existing mysql client pod running, delete with the command + +kubectl delete pod -n ${APP_NAME} mysql-client +``` + +### Add Data to MySQL + +``` +echo "create database myImportantData;" | mysql -h ${MYSQL_HOST} -u root --password=${MYSQL_ROOT_PASSWORD} +MYSQL_EXEC="mysql -h ${MYSQL_HOST} -u root --password=${MYSQL_ROOT_PASSWORD} -DmyImportantData -t" +echo "drop table Accounts" | ${MYSQL_EXEC} +echo "create table if not exists Accounts(name text, balance integer); insert into Accounts values('nick', 0);" | ${MYSQL_EXEC} +echo "insert into Accounts values('albert', 112);" | ${MYSQL_EXEC} +echo "insert into Accounts values('alfred', 358);" | ${MYSQL_EXEC} +echo "insert into Accounts values('beatrice', 1321);" | ${MYSQL_EXEC} +echo "insert into Accounts values('bartholomew', 34);" | ${MYSQL_EXEC} +echo "insert into Accounts values('edward', 5589);" | ${MYSQL_EXEC} +echo "insert into Accounts values('edwin', 144);" | ${MYSQL_EXEC} +echo "insert into Accounts values('edwina', 233);" | ${MYSQL_EXEC} +echo "insert into Accounts values('rastapopoulos', 377);" | ${MYSQL_EXEC} +echo "select * from Accounts;" | ${MYSQL_EXEC} +exit +``` +You should be able to see some data as per below. + +![](Images/Day88_Data10.png) + + +### Create Kanister Profile + +Kanister provides a CLI, `kanctl` and another utility `kando` that is used to interact with your object storage provider from blueprint and both of these utilities. + +[CLI Download](https://docs.kanister.io/tooling.html#tooling) + +I have gone and I have created an AWS S3 Bucket that we will use as our profile target and restore location. I am going to be using environment variables so that I am able to still show you the commands I am running with `kanctl` to create our kanister profile. + +`kanctl create profile s3compliant --access-key $ACCESS_KEY --secret-key $SECRET_KEY --bucket $BUCKET --region eu-west-2 --namespace my-production-app` + +![](Images/Day88_Data11.png) + +### Blueprint time + +Don't worry you don't need to create your own one from scratch unless your data service is not listed here in the [Kanister Examples](https://github.com/kanisterio/kanister/tree/master/examples) but by all means community contributions are how this project gains awareness. + +The blueprint we will be using will be the below. + + +``` +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} +``` + +To add this we will use the `kubectl create -f mysql-blueprint.yml -n kanister` command + +![](Images/Day88_Data12.png) + +### Create our ActionSet and Protect our application + +We will now take a backup of the MySQL data using an ActionSet defining backup for this application. Create an ActionSet in the same namespace as the controller. + +`kubectl get profiles.cr.kanister.io -n my-production-app` This command will show us the profile we previously created, we can have multiple profiles configured here so we might want to use specific ones for different ActionSets + +We are then going to create our ActionSet with the following command using `kanctl` + +`kanctl create actionset --action backup --namespace kanister --blueprint mysql-blueprint --statefulset my-production-app/mysql-store --profile my-production-app/s3-profile-dc5zm --secrets mysql=my-production-app/mysql-store` + +You can see from the command above we are defining the blueprint we added to the namespace, the statefulset in our `my-production-app` namespace and also the secrets to get into the MySQL application. + +![](Images/Day88_Data13.png) + +Check the status of the ActionSet by taking the ActionSet name and using this command `kubectl --namespace kanister describe actionset backup-qpnqv` + +Finally we can go and confirm that we now have data in our AWS S3 bucket. + +![](Images/Day88_Data14.png) + +### Restore + +We need to cause some damage before we can restore anything, we can do this by dropping our table, maybe it was an accident, maybe it wasn't. + +Connect to our MySQL pod. + +``` +APP_NAME=my-production-app +kubectl run mysql-client --rm --env APP_NS=${APP_NAME} --env MYSQL_EXEC="${MYSQL_EXEC}" --env MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} --env MYSQL_HOST=${MYSQL_HOST} --namespace ${APP_NAME} --tty -i --restart='Never' --image docker.io/bitnami/mysql:latest --command -- bash +``` + +You can see that our importantdata db is there with `echo "SHOW DATABASES;" | ${MYSQL_EXEC}` + +Then to drop we ran `echo "DROP DATABASE myImportantData;" | ${MYSQL_EXEC}` + +And confirmed that this was gone with a few attempts to show our database. + +![](Images/Day88_Data15.png) + +We can now use Kanister to get our important data back in business using the `kubectl get actionset -n kanister` to find out our ActionSet name that we took earlier. Then we will create a restore ActionSet to restore our data using `kanctl create actionset -n kanister --action restore --from "backup-qpnqv"` + +![](Images/Day88_Data16.png) + +We can confirm our data is back by using the below command to connect to our database. + +``` +APP_NAME=my-production-app +kubectl run mysql-client --rm --env APP_NS=${APP_NAME} --env MYSQL_EXEC="${MYSQL_EXEC}" --env MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} --env MYSQL_HOST=${MYSQL_HOST} --namespace ${APP_NAME} --tty -i --restart='Never' --image docker.io/bitnami/mysql:latest --command -- bash +``` +Now we are inside the MySQL Client, we can issue the `echo "SHOW DATABASES;" | ${MYSQL_EXEC}` and we can see the database is back. We can also issue the `echo "select * from Accounts;" | ${MYSQL_EXEC}` to check the contents of the database and our important data is restored. + +![](Images/Day88_Data17.png) + +In the next post we take a look at Disaster Recovery within Kubernetes. + +## Resources + +- [Kanister Overview - An extensible open-source framework for app-lvl data management on Kubernetes](https://www.youtube.com/watch?v=wFD42Zpbfts) +- [Application Level Data Operations on Kubernetes](https://community.cncf.io/events/details/cncf-cncf-online-programs-presents-cncf-live-webinar-kanister-application-level-data-operations-on-kubernetes/) +- [Kubernetes Backup and Restore made easy!](https://www.youtube.com/watch?v=01qcYSck1c4&t=217s) +- [Kubernetes Backups, Upgrades, Migrations - with Velero](https://www.youtube.com/watch?v=zybLTQER0yY) +- [7 Database Paradigms](https://www.youtube.com/watch?v=W2Z7fbCLSTw&t=520s) +- [Disaster Recovery vs. Backup: What's the difference?](https://www.youtube.com/watch?v=07EHsPuKXc0) +- [Veeam Portability & Cloud Mobility](https://www.youtube.com/watch?v=hDBlTdzE6Us&t=3s) + +See you on [Day 89](day89.md) diff --git a/zh_tw/Days/day89.md b/zh_tw/Days/day89.md new file mode 100644 index 000000000..5d3e61d12 --- /dev/null +++ b/zh_tw/Days/day89.md @@ -0,0 +1,221 @@ +--- +title: '#90DaysOfDevOps - Disaster Recovery - Day 89' +published: false +description: 90DaysOfDevOps - Disaster Recovery +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048718 +--- +## Disaster Recovery + +We have mentioned already how different failure scenarios will warrant different recovery requirements. When it comes to Fire, Flood and Blood scenarios we can consider these mostly disaster situations where we might need our workloads up and running in a completely different location as fast as possible or at least with near-zero recovery time objectives (RTO). + +This can only be achieved at scale when you automate the replication of the complete application stack to a standby environment. + +This allows for fast failovers across cloud regions, cloud providers or between on-premises and cloud infrastructure. + +Keeping with the theme so far, we are going to concentrate on how this can be achieved using Kasten K10 using our minikube cluster that we deployed and configured a few sessions ago. + +We will then create another minikube cluster with Kasten K10 also installed to act as our standby cluster which in theory could be any location. + +Kasten K10 also has built in functionality to ensure if something was to happen to the Kubernetes cluster it is running on that the catalog data is replicated and available in a new one [K10 Disaster Recovery](https://docs.kasten.io/latest/operating/dr.html). + +### Add object storage to K10 + +The first thing we need to do is add an object storage bucket as a target location for our backups to land. Not only does this act as an offsite location but we can also leverage this as our disaster recovery source data to recover from. + +I have cleaned out the S3 bucket that we created for the Kanister demo in the last session. + +![](Images/Day89_Data1.png) + +Port forward to access the K10 dashboard, open a new terminal to run the below command: + +`kubectl --namespace kasten-io port-forward service/gateway 8080:8000` + +The Kasten dashboard will be available at: `http://127.0.0.1:8080/k10/#/` + +![](Images/Day87_Data4.png) + +To authenticate with the dashboard, we now need the token which we can get with the following commands. + +``` +TOKEN_NAME=$(kubectl get secret --namespace kasten-io|grep k10-k10-token | cut -d " " -f 1) +TOKEN=$(kubectl get secret --namespace kasten-io $TOKEN_NAME -o jsonpath="{.data.token}" | base64 --decode) + +echo "Token value: " +echo $TOKEN +``` + +![](Images/Day87_Data5.png) + +Now we take this token and we input that into our browser, you will then be prompted for an email and company name. + +![](Images/Day87_Data6.png) + +Then we get access to the Kasten K10 dashboard. + +![](Images/Day87_Data7.png) + +Now that we are back in the Kasten K10 dashboard we can add our location profile, select "Settings" at the top of the page and "New Profile". + +![](Images/Day89_Data2.png) + +You can see from the image below that we have choice when it comes to where this location profile is, we are going to select Amazon S3, and we are going to add our sensitive access credentials, region and bucket name. + +![](Images/Day89_Data3.png) + +If we scroll down on the New Profile creation window you will see, we also have the ability to enable immutable backups which leverages the S3 Object Lock API. For this demo we won't be using that. + +![](Images/Day89_Data4.png) + +Hit "Save Profile" and you can now see our newly created or added location profile as per below. + +![](Images/Day89_Data5.png) + +### Create a policy to protect Pac-Man app to object storage + +In the previous session we created only an ad-hoc snapshot of our Pac-Man application, therefore we need to create a backup policy that will send our application backups to our newly created object storage location. + +If you head back to the dashboard and select the Policy card you will see a screen as per below. Select "Create New Policy". + +![](Images/Day89_Data6.png) + +First, we can give our policy a useful name and description. We can also define our backup frequency for demo purposes I am using on-demand. + +![](Images/Day89_Data7.png) + +Next, we want to enable backups via Snapshot exports meaning that we want to send our data out to our location profile. If you have multiple you can select which one you would like to send your backups to. + +![](Images/Day89_Data8.png) + +Next, we select the application by either name or labels, I am going to choose by name and all resources. + +![](Images/Day89_Data9.png) + +Under Advanced settings we are not going to be using any of these but based on our [walkthrough of Kanister yesterday](https://github.com/MichaelCade/90DaysOfDevOps/blob/main/Days/day88.md), we can leverage Kanister as part of Kasten K10 as well to take those application consistent copies of our data. + +![](Images/Day89_Data10.png) + +Finally select "Create Policy" and you will now see the policy in our Policy window. + +![](Images/Day89_Data11.png) + +At the bottom of the created policy, you will have "Show import details" we need this string to be able to import into our standby cluster. Copy this somewhere safe for now. + +![](Images/Day89_Data12.png) + +Before we move on, we just need to select "run once" to get a backup sent our object storage bucket. + +![](Images/Day89_Data13.png) + +Below, the screenshot is just to show the successful backup and export of our data. + +![](Images/Day89_Data14.png) + + +### Create a new MiniKube cluster & deploy K10 + +We then need to deploy a second Kubernetes cluster and where this could be any supported version of Kubernetes including OpenShift, for the purpose of education we will use the very free version of MiniKube with a different name. + +Using `minikube start --addons volumesnapshots,csi-hostpath-driver --apiserver-port=6443 --container-runtime=containerd -p standby --kubernetes-version=1.21.2` we can create our new cluster. + +![](Images/Day89_Data15.png) + +We then can deploy Kasten K10 in this cluster using: + +`helm install k10 kasten/k10 --namespace=kasten-io --set auth.tokenAuth.enabled=true --set injectKanisterSidecar.enabled=true --set-string injectKanisterSidecar.namespaceSelector.matchLabels.k10/injectKanisterSidecar=true --create-namespace` + +This will take a while but in the meantime, we can use `kubectl get pods -n kasten-io -w` to watch the progress of our pods getting to the running status. + +It is worth noting that because we are using MiniKube our application will just run when we run our import policy, our storageclass is the same on this standby cluster. However, something we will cover in the final session is about mobility and transformation. + +When the pods are up and running, we can follow the steps we went through on the previous steps in the other cluster. + +Port forward to access the K10 dashboard, open a new terminal to run the below command + +`kubectl --namespace kasten-io port-forward service/gateway 8080:8000` + +The Kasten dashboard will be available at: `http://127.0.0.1:8080/k10/#/` + +![](Images/Day87_Data4.png) + +To authenticate with the dashboard, we now need the token which we can get with the following commands. + +``` +TOKEN_NAME=$(kubectl get secret --namespace kasten-io|grep k10-k10-token | cut -d " " -f 1) +TOKEN=$(kubectl get secret --namespace kasten-io $TOKEN_NAME -o jsonpath="{.data.token}" | base64 --decode) + +echo "Token value: " +echo $TOKEN +``` + +![](Images/Day87_Data5.png) + +Now we take this token and we input that into our browser, you will then be prompted for an email and company name. + +![](Images/Day87_Data6.png) + +Then we get access to the Kasten K10 dashboard. + +![](Images/Day87_Data7.png) + +### Import Pac-Man into new the MiniKube cluster + +At this point we are now able to create an import policy in that standby cluster and connect to the object storage backups and determine what and how we want this to look. + +First, we add in our Location Profile that we walked through earlier on the other cluster, showing off dark mode here to show the difference between our production system and our DR standby location. + +![](Images/Day89_Data16.png) + +Now we go back to the dashboard and into the policies tab to create a new policy. + +![](Images/Day89_Data17.png) + +Create the import policy as per the below image. When complete, we can create policy. There are options here to restore after import and some people might want this option, this will go and restore into our standby cluster on completion. We also have the ability to change the configuration of the application as it is restored and this is what I have documented in [Day 90](day90.md). + +![](Images/Day89_Data18.png) + +I selected to import on demand, but you can obviously set a schedule on when you want this import to happen. Because of this I am going to run once. + +![](Images/Day89_Data19.png) + +You can see below the successful import policy job. + +![](Images/Day89_Data20.png) + +If we now head back to the dashboard and into the Applications card, we can then select the drop down where you see below "Removed" you will see our application here. Select Restore + +![](Images/Day89_Data21.png) + +Here we can see the restore points we have available to us; this was the backup job that we ran on the primary cluster against our Pac-Man application. + +![](Images/Day89_Data22.png) + +I am not going to change any of the defaults as I want to cover this in more detail in the next session. + +![](Images/Day89_Data23.png) + +When you hit "Restore" it will prompt you with a confirmation. + +![](Images/Day89_Data24.png) + +We can see below that we are in the standby cluster and if we check on our pods, we can see that we have our running application. + +![](Images/Day89_Data25.png) + +We can then port forward (in real life/production environments, you would not need this step to access the application, you would be using ingress) + +![](Images/Day89_Data26.png) + +Next, we will take a look at Application mobility and transformation. + +## Resources + +- [Kubernetes Backup and Restore made easy!](https://www.youtube.com/watch?v=01qcYSck1c4&t=217s) +- [Kubernetes Backups, Upgrades, Migrations - with Velero](https://www.youtube.com/watch?v=zybLTQER0yY) +- [7 Database Paradigms](https://www.youtube.com/watch?v=W2Z7fbCLSTw&t=520s) +- [Disaster Recovery vs. Backup: What's the difference?](https://www.youtube.com/watch?v=07EHsPuKXc0) +- [Veeam Portability & Cloud Mobility](https://www.youtube.com/watch?v=hDBlTdzE6Us&t=3s) + +See you on [Day 90](day90.md) diff --git a/zh_tw/Days/day90.md b/zh_tw/Days/day90.md new file mode 100644 index 000000000..2bd9dac4c --- /dev/null +++ b/zh_tw/Days/day90.md @@ -0,0 +1,125 @@ +--- +title: '#90DaysOfDevOps - Data & Application Mobility - Day 90' +published: false +description: 90DaysOfDevOps - Data & Application Mobility +tags: 'devops, 90daysofdevops, learning' +cover_image: null +canonical_url: null +id: 1048748 +--- +## Data & Application Mobility + +Day 90 of the #90DaysOfDevOps Challenge! In this final session I am going to cover mobility of our data and applications. I am specifically going to focus on Kubernetes but the requirement across platforms and between platforms is something that is an ever-growing requirement and is seen in the field. + +The use case being "I want to move my workload, application and data from one location to another" for many different reasons, could be cost, risk or to provide the business with a better service. + +In this session we are going to take our workload and we are going to look at moving a Kubernetes workload from one cluster to another, but in doing so we are going to change how our application is on the target location. + +It in fact uses a lot of the characteristics that we went through with [Disaster Recovery](day89.md) + +### **The Requirement** + +Our current Kubernetes cluster cannot handle demand and our costs are rocketing through the roof, it is a business decision that we wish to move our production Kubernetes cluster to our Disaster Recovery location, located on a different public cloud which will provide the ability to expand but also at a cheaper rate. We could also take advantage of some of the native cloud services available in the target cloud. + +Our current mission critical application (Pac-Man) has a database (MongoDB) and is running on slow storage, we would like to move to a newer faster storage tier. + +The current Pac-Man (NodeJS) front-end is not scaling very well, and we would like to increase the number of available pods in the new location. + +### Getting to IT + +We have our brief and in fact we have our imports already hitting the Disaster Recovery Kubernetes cluster. + +The first job we need to do is remove the restore operation we carried out on Day 89 for the Disaster Recovery testing. + +We can do this using `kubectl delete ns pacman` on the "standby" minikube cluster. + +![](Images/Day90_Data1.png) + +To get started head into the Kasten K10 Dashboard, select the Applications card. From the dropdown choose "Removed" + +![](Images/Day90_Data2.png) + +We then get a list of the available restore points. We will select the one that is available as this contains our mission critical data. (In this example we only have a single restore point.) + +![](Images/Day90_Data3.png) + +When we worked on the Disaster Recovery process, we left everything as default. However these additional restore options are there if you have a Disaster Recovery process that requires the transformation of your application. In this instance we have the requirement to change our storage and number of replicas. + +![](Images/Day90_Data4.png) + +Select the "Apply transforms to restored resources" option. + +![](Images/Day90_Data5.png) + +It just so happens that the two built in examples for the transformation that we want to perform are what we need for our requirements. + +![](Images/Day90_Data6.png) + +The first requirement is that on our primary cluster we were using a Storage Class called `csi-hostpath-sc` and in our new cluster we would like to use `standard` so we can make that change here. + +![](Images/Day90_Data7.png) + +Looks good, hit the create transform button at the bottom. + +![](Images/Day90_Data8.png) + +The next requirement is that we would like to scale our Pac-Man frontend deployment to "5" + +![](Images/Day90_Data9.png) + +If you are following along you should see both of our transforms as per below. + +![](Images/Day90_Data10.png) + +You can now see from the below image that we are going to restore all of the artifacts listed below, if we wanted to we could also be granular about what we wanted to restore. Hit the "Restore" button + +![](Images/Day90_Data11.png) + +Again, we will be asked to confirm the actions. + +![](Images/Day90_Data12.png) + +The final thing to show is now if we head back into the terminal and we take a look at our cluster, you can see we have 5 pods now for the pacman pods and our storageclass is now set to standard vs the csi-hostpath-sc + +![](Images/Day90_Data13.png) + +There are many different options that can be achieved through transformation. This can span not only migration but also Disaster Recovery, test and development type scenarios and more. + +### API and Automation + +I have not spoken about the ability to leverage the API and to automate some of these tasks, but these options are present and throughout the UI there are breadcrumbs that provide the command sets to take advantage of the APIs for automation tasks. + +The important thing to note about Kasten K10 is that on deployment it is deployed inside the Kubernetes cluster and then can be called through the Kubernetes API. + +This then brings us to a close on the section around Storing and Protecting your data. + +## Resources + +- [Kubernetes Backup and Restore made easy!](https://www.youtube.com/watch?v=01qcYSck1c4&t=217s) +- [Kubernetes Backups, Upgrades, Migrations - with Velero](https://www.youtube.com/watch?v=zybLTQER0yY) +- [7 Database Paradigms](https://www.youtube.com/watch?v=W2Z7fbCLSTw&t=520s) +- [Disaster Recovery vs. Backup: What's the difference?](https://www.youtube.com/watch?v=07EHsPuKXc0) +- [Veeam Portability & Cloud Mobility](https://www.youtube.com/watch?v=hDBlTdzE6Us&t=3s) + +### **Closing** + +As I wrap up this challenge, I want to continue to ask for feedback to make sure that the information is always relevant. + +I also appreciate there are a lot of topics that I was not able to cover or not able to dive deeper into around the topics of DevOps. + +This means that we can always take another attempt that this challenge next year and find another 90 day's worth of content and walkthroughs to work through. + +### What is next? + +Firstly, a break from writing for a little while, I started this challenge on the 1st January 2022 and I have finished on the 31st March 2022 19:50 BST! It has been a slog. But as I say and have said for a long time, if this content helps one person, then it is always worth learning in public! + +I have some ideas on where to take this next and hopefully it has a life outside of a GitHub repository and we can look at creating an eBook and possibly even a physical book. + +I also know that we need to revisit each post and make sure everything is grammatically correct before making anything like that happen. If anyone does know about how to take markdown to print or to an eBook it would be greatly appreciated feedback. + +As always keep the issues and PRs coming. + +Thanks! +@MichaelCade1 +- [GitHub](https://github.com/MichaelCade) +- [Twitter](https://twitter.com/MichaelCade1) diff --git a/zh_tw/README.md b/zh_tw/README.md new file mode 100644 index 000000000..1aaa50e54 --- /dev/null +++ b/zh_tw/README.md @@ -0,0 +1,160 @@ +# 90DaysOfDevOps + +

+ 90DaysOfDevOps Logo +

+ +[English Version](README.md) | [中文版本](zh_cn/README.md) | 繁中版本 + +This repository is used to document my journey on getting a better foundational knowledge of "DevOps". I will be starting this journey on the 1st January 2022 but the idea is that we take 90 days which just so happens to be January 1st to March 31st. + +The reason for documenting these days is so that others can take something from it and also hopefully enhance the resources. + +The goal is to take 90 days, 1 hour each a day, to tackle over 13 areas of "DevOps" to a foundational knowledge. + +This will **not cover all things** "DevOps" but it will cover the areas that I feel will benefit my learning and understanding overall. + +## Progress + +- [✔️] ♾️ 1 > [介紹](Days/day01.md) + +### 什麼是 DevOps? 為何我們需要它? + +- [✔️] ♾️ 2 > [DevOps 的責任](Days/day02.md) +- [✔️] ♾️ 3 > [DevOps 生命週期 - 從應用角度](Days/day03.md) +- [✔️] ♾️ 4 > [DevOps & Agile](Days/day04.md) +- [✔️] ♾️ 5 > [規劃 > 編碼 > 編譯 > 測試 > 釋出 > 部署 > 維運 > 監控 >](Days/day05.md) +- [✔️] ♾️ 6 > [DevOps - 真實故事](Days/day06.md) + +### 學習一項程式語言 + +- [✔️] ⌨️ 7 > [概述: DevOps & 學習一項程式語言](Days/day07.md) +- [✔️] ⌨️ 8 > [設置你的 DevOps 環境 & 使用 Go 寫 Hello World](Days/day08.md) +- [✔️] ⌨️ 9 > [解釋 Hello World 程式碼](Days/day09.md) +- [✔️] ⌨️ 10 > [Go 的工作區 & 編譯 & 執行程式碼](Days/day10.md) +- [✔️] ⌨️ 11 > [介紹變數, 常數 & 資料型態](Days/day11.md) +- [✔️] ⌨️ 12 > [Getting user input with Pointers and a finished program](Days/day12.md) +- [✔️] ⌨️ 13 > [Tweet your progress with our new App](Days/day13.md) + +### 學習 Linux 基礎 + +- [✔️] 🐧 14 > [The Big Picture: DevOps and Linux](Days/day14.md) +- [✔️] 🐧 15 > [Linux Commands for DevOps (Actually everyone)](Days/day15.md) +- [✔️] 🐧 16 > [Managing your Linux System, Filesystem & Storage](Days/day16.md) +- [✔️] 🐧 17 > [Text Editors - nano vs vim](Days/day17.md) +- [✔️] 🐧 18 > [SSH & Web Server(LAMP)](Days/day18.md) +- [✔️] 🐧 19 > [Automate tasks with bash scripts](Days/day19.md) +- [✔️] 🐧 20 > [Dev workstation setup - All the pretty things](Days/day20.md) + +### 瞭解網路 + +- [✔️] 🌐 21 > [The Big Picture: DevOps and Networking](Days/day21.md) +- [✔️] 🌐 22 > [The OSI Model - The 7 Layers](Days/day22.md) +- [✔️] 🌐 23 > [Network Protocols](Days/day23.md) +- [✔️] 🌐 24 > [Network Automation](Days/day24.md) +- [✔️] 🌐 25 > [Python for Network Automation](Days/day25.md) +- [✔️] 🌐 26 > [Building our Lab](Days/day26.md) +- [✔️] 🌐 27 > [Getting Hands-On with Python & Network](Days/day27.md) + +### 選擇一個雲端供應商 + +- [✔️] ☁️ 28 > [The Big Picture: DevOps & The Cloud](Days/day28.md) +- [✔️] ☁️ 29 > [Microsoft Azure Fundamentals](Days/day29.md) +- [✔️] ☁️ 30 > [Microsoft Azure Security Models](Days/day30.md) +- [✔️] ☁️ 31 > [Microsoft Azure Compute Models](Days/day31.md) +- [✔️] ☁️ 32 > [Microsoft Azure Storage & Database Models](Days/day32.md) +- [✔️] ☁️ 33 > [Microsoft Azure Networking Models + Azure Management](Days/day33.md) +- [✔️] ☁️ 34 > [Microsoft Azure Hands-On Scenarios](Days/day34.md) + +### 如何高效的使用 Git + +- [✔️] 📚 35 > [The Big Picture: Git - Version Control](Days/day35.md) +- [✔️] 📚 36 > [Installing & Configuring Git](Days/day36.md) +- [✔️] 📚 37 > [Gitting to know Git](Days/day37.md) +- [✔️] 📚 38 > [Staging & Changing](Days/day38.md) +- [✔️] 📚 39 > [Viewing, unstaging, discarding & restoring](Days/day39.md) +- [✔️] 📚 40 > [Social Network for code](Days/day40.md) +- [✔️] 📚 41 > [The Open Source Workflow](Days/day41.md) + +### 容器(Containers) + +- [✔️] 🏗️ 42 > [The Big Picture: Containers](Days/day42.md) +- [✔️] 🏗️ 43 > [What is Docker & Getting installed](Days/day43.md) +- [✔️] 🏗️ 44 > [Docker Images & Hands-On with Docker Desktop](Days/day44.md) +- [✔️] 🏗️ 45 > [The anatomy of a Docker Image](Days/day45.md) +- [✔️] 🏗️ 46 > [Docker Compose](Days/day46.md) +- [✔️] 🏗️ 47 > [Docker Networking & Security](Days/day47.md) +- [✔️] 🏗️ 48 > [Alternatives to Docker](Days/day48.md) + +### Kubernetes + +- [✔️] ☸ 49 > [The Big Picture: Kubernetes](Days/day49.md) +- [✔️] ☸ 50 > [Choosing your Kubernetes platform ](Days/day50.md) +- [✔️] ☸ 51 > [Deploying your first Kubernetes Cluster](Days/day51.md) +- [✔️] ☸ 52 > [Setting up a multinode Kubernetes Cluster](Days/day52.md) +- [✔️] ☸ 53 > [Rancher Overview - Hands On](Days/day53.md) +- [✔️] ☸ 54 > [Kubernetes Application Deployment](Days/day54.md) +- [✔️] ☸ 55 > [State and Ingress in Kubernetes](Days/day55.md) + +### 學習基礎架構即程式碼(Infrastructure as Code) + +- [✔️] 🤖 56 > [The Big Picture: IaC](Days/day56.md) +- [✔️] 🤖 57 > [An intro to Terraform ](Days/day57.md) +- [✔️] 🤖 58 > [HashiCorp Configuration Language (HCL)](Days/day58.md) +- [✔️] 🤖 59 > [Create a VM with Terraform & Variables](Days/day59.md) +- [✔️] 🤖 60 > [Docker Containers, Provisioners & Modules](Days/day60.md) +- [✔️] 🤖 61 > [Kubernetes & Multiple Environments](Days/day61.md) +- [✔️] 🤖 62 > [Testing, Tools & Alternatives](Days/day62.md) + +### 自動化組態管理工具 + +- [✔️] 📜 63 > [The Big Picture: Configuration Management](Days/day63.md) +- [✔️] 📜 64 > [Ansible: Getting Started](Days/day64.md) +- [✔️] 📜 65 > [Ansible Playbooks](Days/day65.md) +- [✔️] 📜 66 > [Ansible Playbooks Continued...](Days/day66.md) +- [✔️] 📜 67 > [Using Roles & Deploying a Loadbalancer](Days/day67.md) +- [✔️] 📜 68 > [Tags, Variables, Inventory & Database Server config](Days/day68.md) +- [✔️] 📜 69 > [All other things Ansible - Automation Controller, AWX, Vault](Days/day69.md) + +### 創建 CI/CD Pipelines + +- [✔️] 🔄 70 > [The Big Picture: CI/CD Pipelines](Days/day70.md) +- [✔️] 🔄 71 > [What is Jenkins?](Days/day71.md) +- [✔️] 🔄 72 > [Getting hands on with Jenkins](Days/day72.md) +- [✔️] 🔄 73 > [Building a Jenkins pipeline](Days/day73.md) +- [✔️] 🔄 74 > [Hello World - Jenkinsfile App Pipeline](Days/day74.md) +- [✔️] 🔄 75 > [GitHub Actions Overview](Days/day75.md) +- [✔️] 🔄 76 > [ArgoCD Overview](Days/day76.md) + +### 監控, 日誌管理和資料可視化 + +- [✔️] 📈 77 > [The Big Picture: Monitoring](Days/day77.md) +- [✔️] 📈 78 > [Hands-On Monitoring Tools](Days/day78.md) +- [✔️] 📈 79 > [The Big Picture: Log Management](Days/day79.md) +- [✔️] 📈 80 > [ELK Stack](Days/day80.md) +- [✔️] 📈 81 > [Fluentd & FluentBit](Days/day81.md) +- [✔️] 📈 82 > [EFK Stack](Days/day82.md) +- [✔️] 📈 83 > [Data Visualisation - Grafana](Days/day83.md) + +### 儲存並保護你的資料 + +- [✔️] 🗃️ 84 > [The Big Picture: Data Management](Days/day84.md) +- [✔️] 🗃️ 85 > [Data Services](Days/day85.md) +- [✔️] 🗃️ 86 > [Backup all the platforms](Days/day86.md) +- [✔️] 🗃️ 87 > [Hands-On Backup & Recovery](Days/day87.md) +- [✔️] 🗃️ 88 > [Application Focused Backups](Days/day88.md) +- [✔️] 🗃️ 89 > [Disaster Recovery](Days/day89.md) +- [✔️] 🗃️ 90 > [Data & Application Mobility](Days/day90.md) + +## License + +Shield: [![CC BY-NC-SA 4.0][cc-by-nc-sa-shield]][cc-by-nc-sa] + +This work is licensed under a +[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][cc-by-nc-sa]. + +[![CC BY-NC-SA 4.0][cc-by-nc-sa-image]][cc-by-nc-sa] + +[cc-by-nc-sa]: http://creativecommons.org/licenses/by-nc-sa/4.0/ +[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