Closed jcverazzi closed 5 years ago
Hi @jcverazzi (Jean charles)
Did you configure something in gravitee.yml
for the management-api in the authentication section?
I've updated the comment to remove company name
Hi @brasseld,
thanks for your help.
Here is my gravitee.yml security part :
security:
providers: # authentication providers
- type: memory
# password encoding/hashing algorithm. One of:
# - bcrypt : passwords are hashed with bcrypt
# - none : passwords are not hashed/encrypted
# default value is bcrypt
password-encoding-algo: bcrypt
users:
- user:
username: user
# Passwords are encoded using BCrypt
# Password value: password
password: $2a$10$9kjw/SH9gucCId3Lnt6EmuFreUAcXSZgpvAYuW2ISv7hSOhHRH1AO
roles: MANAGEMENT:USER, PORTAL:USER
- user:
username: admin
# Password value: admin
password: $2a$10$Ihk05VSds5rUSgMdsMVi9OKMIx2yUvMz7y9VP3rJmQeizZLrhLMyq
roles: ADMIN
- user:
username: api1
# Password value: api1
password: $2a$10$iXdXO4wAYdhx2LOwijsp7.PsoAZQ05zEdHxbriIYCbtyo.y32LTji
# You can declare multiple roles using comma separator
roles: MANAGEMENT:API_PUBLISHER, PORTAL:API_PUBLISHER
- user:
username: application1
# Password value: application1
password: $2a$10$2gtKPYRB9zaVaPcn5RBx/.3T.7SeZoDGs9GKqbo9G64fKyXFR1He.
roles: MANAGEMENT:USER, PORTAL:USER
# Enable authentication using internal repository
- type: gravitee
- type: oauth2
clientId: gravitee
clientSecret: 3dbdf99d-7257-45f2-bdf9-9d7257e5f2e4
tokenEndpoint: http://<AM_URL>:8092/my_domain/oauth/token
tokenIntrospectionEndpoint: http://<AM_URL>:8092/my_domain/oauth/introspect
userInfoEndpoint: http://<AM_URL>:8092/my_domain/oidc/userinfo
accessTokenProperty: access_token
authorizationHeader: "Bearer %s"
mapping:
id: sub
email: email
lastname: sn
firstname: givenName
Did you try to call the tokenEndpoint or the userInfoEndpoint by yourself ? Just to ensure that they can be reach?
FYI, we will release Gravitee.io 1.21 soon and the identity provider management has been fully moved into the management-api. You do not have to update multiple files (constants.json / gravitee.yml) anymore.
Again, I've updated your comment to remove company name.
You're right, it doesn't seem to be available. When trying on localhost on the server, I get no answer :
root@LX-API-ACCESS:~# curl -X GET http://localhost:8092
root@LX-API-ACCESS:~# curl -X GET http://localhost:8092/my_domain/oauth/token
root@LX-API-ACCESS:~#
I assumed it was normal, even if doc says otherwise (sorry, I thought doc was not up to date). I tried to see logs, but there's no log in AM-GW/logs/gravitee.log. I tried modifying logback level to debug, but didn't see anything interesting.
So I guess my gateway is not working well, and I don't know why.
Did you start the AM gateway ? Can you provide me log file ?
Here's the log :
16:43:29.256 [vert.x-eventloop-thread-7] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server has been correctly stopped
16:43:37.711 [gravitee] [] INFO i.g.am.gateway.container.Container - Initializing Gravitee.io AM Gateway context...
16:43:38.045 [gravitee] [] INFO i.g.a.g.s.PropertiesConfiguration - Loading configuration.
16:43:38.050 [gravitee] [] INFO i.g.a.g.s.PropertiesConfiguration - Configuration loaded from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/config/gravitee.yml
16:43:38.108 [gravitee] [] INFO i.g.a.g.s.PropertiesConfiguration - Loading configuration. DONE
16:43:38.120 [gravitee] [] INFO i.g.p.c.s.PluginHandlerBeanFactoryPostProcessor - Loading plugin handlers
16:43:38.125 [gravitee] [] INFO i.g.p.c.s.PluginHandlerBeanFactoryPostProcessor - Find 5 plugin handler(s):
16:43:38.126 [gravitee] [] INFO i.g.p.c.s.PluginHandlerBeanFactoryPostProcessor - io.gravitee.am.plugins.idp.plugin.IdentityProviderPluginHandler
16:43:38.127 [gravitee] [] INFO i.g.p.c.s.PluginHandlerBeanFactoryPostProcessor - io.gravitee.am.gateway.repository.plugins.RepositoryPluginHandler
16:43:38.128 [gravitee] [] INFO i.g.p.c.s.PluginHandlerBeanFactoryPostProcessor - io.gravitee.am.gateway.services.core.plugins.ServicePluginHandler
16:43:38.128 [gravitee] [] INFO i.g.p.c.s.PluginHandlerBeanFactoryPostProcessor - io.gravitee.am.plugins.certificate.plugin.CertificatePluginHandler
16:43:38.129 [gravitee] [] INFO i.g.p.c.s.PluginHandlerBeanFactoryPostProcessor - io.gravitee.am.plugins.extensiongrant.plugin.ExtensionGrantPluginHandler
16:43:38.533 [gravitee] [] INFO i.g.a.g.r.p.RepositoryPluginHandler - Loading repository for scope MANAGEMENT: mongodb
16:43:38.534 [gravitee] [] INFO i.g.a.g.r.p.RepositoryPluginHandler - Loading repository for scope OAUTH2: mongodb
16:43:38.707 [gravitee] [] INFO i.g.am.gateway.container.Container - Start Gravitee.io AM Gateway...
16:43:38.707 [gravitee] [] INFO i.g.am.gateway.node.GatewayNode - Gravitee.io - Access Management - Gateway is now starting...
16:43:38.708 [gravitee] [] INFO i.g.am.gateway.node.GatewayNode - Starting component: PluginEventListener
16:43:38.708 [gravitee] [] INFO i.g.common.service.AbstractService - Initializing service io.gravitee.plugin.core.internal.PluginEventListener
16:43:38.708 [gravitee] [] INFO i.g.c.event.impl.EventManagerImpl - Register new listener PluginEventListener for event type class io.gravitee.plugin.core.api.PluginEvent
16:43:38.709 [gravitee] [] INFO i.g.am.gateway.node.GatewayNode - Starting component: PluginRegistry
16:43:38.710 [gravitee] [] INFO i.g.common.service.AbstractService - Initializing service io.gravitee.plugin.core.internal.PluginRegistryImpl
16:43:38.710 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Initializing plugin registry.
16:43:38.710 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugins from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins
16:43:38.713 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-extensiongrant-jwtbearer-2.0.5.zip
16:43:38.819 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-extensiongrant-jwtbearer-2.0.5/gravitee-am-extensiongrant-jwtbearer-2.0.5.jar
16:43:38.823 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-identityprovider-github-2.0.5.zip
16:43:38.826 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-identityprovider-github-2.0.5/gravitee-am-identityprovider-github-2.0.5.jar
16:43:38.826 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-identityprovider-inline-2.0.5.zip
16:43:38.829 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-identityprovider-inline-2.0.5/gravitee-am-identityprovider-inline-2.0.5.jar
16:43:38.830 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-repository-mongodb-2.0.5.zip
16:43:38.843 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-repository-mongodb-2.0.5/gravitee-am-repository-mongodb-2.0.5.jar
16:43:38.844 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-identityprovider-mongo-2.0.5.zip
16:43:38.864 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-identityprovider-mongo-2.0.5/gravitee-am-identityprovider-mongo-2.0.5.jar
16:43:38.897 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-certificate-javakeystore-2.0.5.zip
16:43:38.902 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-certificate-javakeystore-2.0.5/gravitee-am-certificate-javakeystore-2.0.5.jar
16:43:38.903 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-gateway-services-sync-2.0.5.zip
16:43:38.907 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-gateway-services-sync-2.0.5/gravitee-am-gateway-services-sync-2.0.5.jar
16:43:38.907 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-identityprovider-oauth2-generic-2.0.5.zip
16:43:38.910 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-identityprovider-oauth2-generic-2.0.5/gravitee-am-identityprovider-oauth2-generic-2.0.5.jar
16:43:38.911 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Loading plugin from /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/gravitee-am-identityprovider-ldap-2.0.5.zip
16:43:38.920 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - A plugin manifest has been loaded from: /etc/gravitee/gravitee-am-gateway-standalone-2.0.5/plugins/.work/gravitee-am-identityprovider-ldap-2.0.5/gravitee-am-identityprovider-ldap-2.0.5.jar
16:43:38.921 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available policy:
16:43:38.924 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available reporter:
16:43:38.924 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available service:
16:43:38.924 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > sync-service [2.0.5] has been loaded
16:43:38.925 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available repository:
16:43:38.925 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > repository-am-mongodb [2.0.5] has been loaded
16:43:38.925 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available identity_provider:
16:43:38.925 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > github-am-idp [2.0.5] has been loaded
16:43:38.925 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > inline-am-idp [2.0.5] has been loaded
16:43:38.925 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > mongo-am-idp [2.0.5] has been loaded
16:43:38.925 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > oauth2-generic-am-idp [2.0.5] has been loaded
16:43:38.925 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > ldap-am-idp [2.0.5] has been loaded
16:43:38.926 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available resource:
16:43:38.926 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available fetcher:
16:43:38.926 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available certificate:
16:43:38.926 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > javakeystore-am-certificate [2.0.5] has been loaded
16:43:38.927 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - List of available extension_grant:
16:43:38.927 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - > jwtbearer-am-extension-grant [2.0.5] has been loaded
16:43:38.927 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - All plugins have been loaded. Installing...
16:43:38.927 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing REPOSITORY plugins...
16:43:38.931 [gravitee] [] INFO i.g.a.g.r.p.RepositoryPluginHandler - Register a new repository plugin: repository-am-mongodb [io.gravitee.am.repository.mongodb.MongoRepository]
16:43:38.931 [gravitee] [] INFO i.g.a.g.r.p.RepositoryPluginHandler - Repository [MANAGEMENT] loaded by mongodb
16:43:39.089 [gravitee] [] INFO org.mongodb.driver.cluster - Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='1000 ms', maxWaitQueueSize=500, description='gravitee.io'}
16:43:39.181 [cluster-ClusterId{value='5bf8202bff638a41cac0ece4', description='gravitee.io'}-localhost:27017] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:1, serverValue:117}] to localhost:27017
16:43:39.188 [cluster-ClusterId{value='5bf8202bff638a41cac0ece4', description='gravitee.io'}-localhost:27017] [] INFO org.mongodb.driver.cluster - Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 4]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=3673313}
16:43:39.212 [Thread-11] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:2, serverValue:118}] to localhost:27017
16:43:39.215 [Thread-9] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:3, serverValue:119}] to localhost:27017
16:43:39.223 [Thread-10] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:4, serverValue:120}] to localhost:27017
16:43:39.226 [Thread-12] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:5, serverValue:121}] to localhost:27017
16:43:39.231 [Thread-11] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:6, serverValue:122}] to localhost:27017
16:43:39.235 [Thread-10] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:7, serverValue:123}] to localhost:27017
16:43:39.258 [gravitee] [] INFO i.g.a.g.r.p.RepositoryPluginHandler - Repository [OAUTH2] loaded by mongodb
16:43:39.286 [gravitee] [] INFO org.mongodb.driver.cluster - Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='1000 ms', maxWaitQueueSize=500, description='gravitee.io'}
16:43:39.297 [gravitee] [] INFO org.mongodb.driver.cluster - No server chosen by com.mongodb.async.client.ClientSessionHelper$1@11ee02f8 from cluster description ClusterDescription{type=UNKNOWN, connectionMode=SINGLE, serverDescriptions=[ServerDescription{address=localhost:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 1000 ms before timing out
16:43:39.300 [gravitee] [] INFO org.mongodb.driver.cluster - No server chosen by com.mongodb.async.client.ClientSessionHelper$1@3a71c100 from cluster description ClusterDescription{type=UNKNOWN, connectionMode=SINGLE, serverDescriptions=[ServerDescription{address=localhost:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 1000 ms before timing out
16:43:39.304 [cluster-ClusterId{value='5bf8202bff638a41cac0ece5', description='gravitee.io'}-localhost:27017] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:8, serverValue:124}] to localhost:27017
16:43:39.304 [gravitee] [] INFO org.mongodb.driver.cluster - No server chosen by com.mongodb.async.client.ClientSessionHelper$1@271f18d3 from cluster description ClusterDescription{type=UNKNOWN, connectionMode=SINGLE, serverDescriptions=[ServerDescription{address=localhost:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 1000 ms before timing out
16:43:39.304 [gravitee] [] INFO org.mongodb.driver.cluster - No server chosen by com.mongodb.async.client.ClientSessionHelper$1@6bd51ed8 from cluster description ClusterDescription{type=UNKNOWN, connectionMode=SINGLE, serverDescriptions=[ServerDescription{address=localhost:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 1000 ms before timing out
16:43:39.304 [cluster-ClusterId{value='5bf8202bff638a41cac0ece5', description='gravitee.io'}-localhost:27017] [] INFO org.mongodb.driver.cluster - Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 4]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=508302}
16:43:39.307 [Thread-8] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:9, serverValue:125}] to localhost:27017
16:43:39.309 [Thread-9] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:10, serverValue:126}] to localhost:27017
16:43:39.311 [Thread-9] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:11, serverValue:127}] to localhost:27017
16:43:39.313 [Thread-10] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:12, serverValue:128}] to localhost:27017
16:43:39.320 [Thread-11] [] INFO org.mongodb.driver.connection - Opened connection [connectionId{localValue:13, serverValue:129}] to localhost:27017
16:43:39.326 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing IDENTITY_PROVIDER plugins...
16:43:39.327 [gravitee] [] INFO i.g.a.p.i.p.IdentityProviderPluginHandler - Register a new identity provider plugin: github-am-idp [io.gravitee.am.identityprovider.github.GithubIdentityProvider]
16:43:39.329 [gravitee] [] INFO i.g.a.p.i.p.IdentityProviderPluginHandler - Register a new identity provider plugin: inline-am-idp [io.gravitee.am.identityprovider.inline.InlineIdentityProvider]
16:43:39.329 [gravitee] [] INFO i.g.a.p.i.p.IdentityProviderPluginHandler - Register a new identity provider plugin: ldap-am-idp [io.gravitee.am.identityprovider.ldap.LdapIdentityProvider]
16:43:39.330 [gravitee] [] INFO i.g.a.p.i.p.IdentityProviderPluginHandler - Register a new identity provider plugin: oauth2-generic-am-idp [io.gravitee.am.identityprovider.oauth2.OAuth2GenericIdentityProvider]
16:43:39.332 [gravitee] [] INFO i.g.a.p.i.p.IdentityProviderPluginHandler - Register a new identity provider plugin: mongo-am-idp [io.gravitee.am.identityprovider.mongo.MongoIdentityProvider]
16:43:39.332 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing RESOURCE plugins...
16:43:39.332 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing POLICY plugins...
16:43:39.333 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing SERVICE plugins...
16:43:39.333 [gravitee] [] INFO i.g.a.g.s.c.p.ServicePluginHandler - Register a new service: sync-service [io.gravitee.am.gateway.services.sync.ScheduledSyncService]
16:43:39.437 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing REPORTER plugins...
16:43:39.437 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing FETCHER plugins...
16:43:39.438 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing CERTIFICATE plugins...
16:43:39.439 [gravitee] [] INFO i.g.a.p.c.p.CertificatePluginHandler - Register a new certificate plugin: javakeystore-am-certificate [io.gravitee.am.certificate.javakeystore.JavaKeyStore]
16:43:39.440 [gravitee] [] INFO i.g.p.c.internal.PluginEventListener - Installing EXTENSION_GRANT plugins...
16:43:39.441 [gravitee] [] INFO i.g.a.p.e.p.ExtensionGrantPluginHandler - Register a new extension grant plugin: jwtbearer-am-extension-grant [io.gravitee.am.extensiongrant.jwtbearer.JwtBearerExtensionGrant]
16:43:39.442 [gravitee] [] INFO i.g.p.c.internal.PluginRegistryImpl - Plugins have been loaded and installed.
16:43:39.442 [gravitee] [] INFO i.g.am.gateway.node.GatewayNode - Starting component: Reactor
16:43:39.442 [gravitee] [] INFO i.g.common.service.AbstractService - Initializing service io.gravitee.am.gateway.reactor.impl.DefaultReactor
16:43:39.443 [gravitee] [] INFO i.g.c.event.impl.EventManagerImpl - Register new listener DefaultReactor for event type class io.gravitee.am.gateway.core.event.DomainEvent
16:43:39.443 [gravitee] [] INFO i.g.am.gateway.node.GatewayNode - Starting component: ServiceManager
16:43:39.443 [gravitee] [] INFO i.g.common.service.AbstractService - Initializing service AM Gateway Services Manager
16:43:39.443 [gravitee] [] INFO i.g.common.service.AbstractService - Initializing service Sync Service
16:43:39.444 [gravitee] [] INFO i.g.a.g.s.sync.ScheduledSyncService - Sync service has been initialized with cron [*/5 * * * * *]
16:43:39.447 [gravitee] [] INFO i.g.am.gateway.node.GatewayNode - Starting component: VertxEmbeddedContainer
16:43:39.447 [gravitee] [] INFO i.g.a.g.vertx.VertxEmbeddedContainer - Starting Vertx container and deploy Gateway Verticles [8 instance(s)]
16:43:39.609 [gravitee] [] INFO i.g.am.gateway.node.GatewayNode - Gravitee.io - Access Management - Gateway id[511d9589-5b25-43da-9d95-895b25f3dade] version[2.0.5] pid[16842] build[178#${env.GIT_COMMIT}] jvm[Oracle Corporation/OpenJDK 64-Bit Server VM/25.181-b13] started in 901 ms.
16:43:39.699 [vert.x-eventloop-thread-2] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server is now listening for requests on port 8092
16:43:39.699 [vert.x-eventloop-thread-7] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server is now listening for requests on port 8092
16:43:39.699 [vert.x-eventloop-thread-6] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server is now listening for requests on port 8092
16:43:39.699 [vert.x-eventloop-thread-4] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server is now listening for requests on port 8092
16:43:39.699 [vert.x-eventloop-thread-3] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server is now listening for requests on port 8092
16:43:39.699 [vert.x-eventloop-thread-5] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server is now listening for requests on port 8092
16:43:39.700 [vert.x-eventloop-thread-0] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server is now listening for requests on port 8092
16:43:39.699 [vert.x-eventloop-thread-1] [] INFO i.g.a.gateway.vertx.GraviteeVerticle - HTTP Server is now listening for requests on port 8092
16:43:40.081 [sync-1] [] INFO i.g.a.g.r.i.DefaultSecurityDomainHandlerRegistry - Register a new domain for alinea on path alinea
16:43:40.152 [sync-1] [] INFO i.g.a.g.h.o.c.impl.ClientServiceImpl - Initializing clients for domain alinea
16:43:40.161 [Thread-9] [] INFO i.g.a.g.h.o.c.impl.ClientServiceImpl - Clients loaded for domain alinea
16:43:40.163 [sync-1] [] INFO i.g.a.g.h.o.c.i.CertificateManagerImpl - Initializing certificates for domain alinea
16:43:40.166 [Thread-14] [] INFO i.g.a.g.h.o.c.i.CertificateManagerImpl - Certificates loaded for domain alinea
16:43:40.187 [sync-1] [] INFO i.g.a.g.h.a.i.i.IdentityProviderManagerImpl - Initializing identity providers for domain alinea
16:43:40.192 [sync-1] [] INFO i.g.a.g.h.a.i.i.IdentityProviderManagerImpl - Initializing identity provider: AD alinea [ldap-am-idp]
16:43:40.333 [sync-1] [] INFO i.g.a.i.l.a.LdapAuthenticationProvider - User identifier is based on the [sAMAccountName] attribute
16:43:40.334 [sync-1] [] INFO i.g.a.g.h.a.i.i.IdentityProviderManagerImpl - Identity providers loaded for domain alinea
16:43:40.354 [sync-1] [] INFO i.g.a.g.h.o.g.e.i.ExtensionGrantManagerImpl - Initializing extension grants for domain alinea
16:43:40.396 [Thread-14] [] INFO i.g.a.g.h.o.g.e.i.ExtensionGrantManagerImpl - Extension grants loaded for domain alinea
16:43:40.609 [sync-1] [] INFO i.g.a.g.r.i.DefaultSecurityDomainHandlerRegistry - Register a new domain for admin on path admin
16:43:40.626 [sync-1] [] INFO i.g.a.g.h.o.c.impl.ClientServiceImpl - Initializing clients for domain admin
16:43:40.627 [Thread-11] [] INFO i.g.a.g.h.o.c.impl.ClientServiceImpl - Clients loaded for domain admin
16:43:40.628 [sync-1] [] INFO i.g.a.g.h.o.c.i.CertificateManagerImpl - Initializing certificates for domain admin
16:43:40.629 [Thread-8] [] INFO i.g.a.g.h.o.c.i.CertificateManagerImpl - Certificates loaded for domain admin
16:43:40.631 [sync-1] [] INFO i.g.a.g.h.a.i.i.IdentityProviderManagerImpl - Initializing identity providers for domain admin
16:43:40.632 [sync-1] [] INFO i.g.a.g.h.a.i.i.IdentityProviderManagerImpl - Initializing identity provider: Inline users [inline-am-idp]
16:43:40.666 [sync-1] [] INFO i.g.a.g.h.a.i.i.IdentityProviderManagerImpl - Identity providers loaded for domain admin
16:43:40.670 [sync-1] [] INFO i.g.a.g.h.o.g.e.i.ExtensionGrantManagerImpl - Initializing extension grants for domain admin
16:43:40.671 [Thread-14] [] INFO i.g.a.g.h.o.g.e.i.ExtensionGrantManagerImpl - Extension grants loaded for domain admin
Sorry, guess I had a network problem, cause now my AM GW answers (in chrome): "Access error Please go back to your client application and try again, or contact the owner and ask for support"
How can I be sure that my gateway is up and running? EDIT: When trying to sign in in APIM portal, i see this log in AM GW: 17:08:31.833 [vert.x-eventloop-thread-2] [] INFO org.ldaptive.auth.Authenticator - Authentication succeeded for dn: CN=Jean-Charles VERAZZI,[...] But still have 404 error.
In Gravitee.io AM 2.1 (which will be release shortly), we have included a new healthcheck endpoint to ensure that the gateway is UP.
When trying to sign in in APIM portal, i see this log in AM GW: 17:08:31.833 [vert.x-eventloop-thread-2] [] INFO org.ldaptive.auth.Authenticator - Authentication succeeded for dn: CN=Jean-Charles VERAZZI,[...]
So I guess my gateway is up. But still have 404 error when signing in in APIM portal.
please provide the access-log of the mgmt-api (APIM)
Here they are:
10.13.5.165 - - [23/nov./2018:13:23:06 +0000] "GET /management/portal HTTP/1.1" 200 1921 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 11
10.13.5.165 - - [23/nov./2018:13:23:07 +0000] "OPTIONS /management/user/ HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:23:07 +0000] "GET /management/user/ HTTP/1.1" 401 0 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:23:07 +0000] "OPTIONS /management/portal/pages/?homepage=false HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:23:07 +0000] "GET /management/portal/pages/?homepage=false HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 9
10.13.5.165 - - [23/nov./2018:13:23:07 +0000] "OPTIONS /management/apis/?top=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:23:07 +0000] "OPTIONS /management/portal/pages/?homepage=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:23:07 +0000] "GET /management/portal/pages/?homepage=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:13:23:07 +0000] "GET /management/apis/?top=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 17
10.13.5.165 - - [23/nov./2018:13:23:19 +0000] "OPTIONS /management/auth/oauth2 HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:23:19 +0000] "POST /management/auth/oauth2 HTTP/1.1" 404 61 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:23:36 +0000] "POST /management/auth/oauth2 HTTP/1.1" 404 61 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:23:36 +0000] "GET /management/portal HTTP/1.1" 200 1921 "http://<URL_APIM>/?code=2db3a3cc-4d5d-4ce6-b3a3-cc4d5d3ce6a0" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 4
10.13.3.91 - - [23/nov./2018:13:33:07 +0000] "get /management/ HTTP/1.1" 401 0 "-" "curl/7.38.0" 2
10.13.5.165 - - [23/nov./2018:13:33:16 +0000] "GET /management/ HTTP/1.1" 401 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:33:24 +0000] "GET /management/apis HTTP/1.1" 200 1815 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 23
10.13.5.165 - - [23/nov./2018:13:33:24 +0000] "GET /favicon.ico HTTP/1.1" 404 0 "http://<URL_APIM>:8083/management/apis" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:33:37 +0000] "OPTIONS /management/auth/oauth2 HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:33:37 +0000] "POST /management/auth/oauth2 HTTP/1.1" 404 61 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:33:45 +0000] "POST /management/auth/oauth2 HTTP/1.1" 404 61 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:58:45 +0000] "OPTIONS /management/user/login HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:58:45 +0000] "POST /management/user/login HTTP/1.1" 200 526 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 283
10.13.5.165 - - [23/nov./2018:13:58:45 +0000] "OPTIONS /management/user/ HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:58:45 +0000] "GET /management/user/ HTTP/1.1" 200 1374 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 29
10.13.5.165 - - [23/nov./2018:13:58:45 +0000] "OPTIONS /management/user/tasks HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:58:45 +0000] "OPTIONS /management/portal/pages/?homepage=false HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "OPTIONS /management/user/notifications HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "GET /management/user/avatar?92668751 HTTP/1.1" 200 3097 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 12
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "GET /management/portal/pages/?homepage=false HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 13
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "OPTIONS /management/apis/?top=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "OPTIONS /management/portal/pages/?homepage=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "GET /management/portal/pages/?homepage=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:13:58:46 +0000] "GET /management/apis/?top=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 8
10.13.5.165 - - [23/nov./2018:13:58:55 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:13:58:55 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:13:58:56 +0000] "OPTIONS /management/user/logout HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:58:56 +0000] "POST /management/user/logout HTTP/1.1" 200 0 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:13:58:56 +0000] "GET /management/portal/pages/?homepage=false HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:13:58:56 +0000] "GET /management/portal/pages/?homepage=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:13:58:56 +0000] "GET /management/apis/?top=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 7
10.13.5.165 - - [23/nov./2018:13:59:27 +0000] "GET /management/portal HTTP/1.1" 200 1921 "http://<URL_APIM>/?redirect_uri=http://<URL_APIM>" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 4
10.13.5.165 - - [23/nov./2018:13:59:28 +0000] "OPTIONS /management/user/ HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:59:28 +0000] "GET /management/user/ HTTP/1.1" 401 0 "http://<URL_APIM>/?redirect_uri=http://<URL_APIM>" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:13:59:28 +0000] "OPTIONS /management/portal/pages/?homepage=false HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:59:28 +0000] "GET /management/portal/pages/?homepage=false HTTP/1.1" 200 3 "http://<URL_APIM>/?redirect_uri=http://<URL_APIM>" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 4
10.13.5.165 - - [23/nov./2018:13:59:28 +0000] "OPTIONS /management/apis/?top=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:59:28 +0000] "OPTIONS /management/portal/pages/?homepage=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:59:28 +0000] "GET /management/portal/pages/?homepage=true HTTP/1.1" 200 3 "http://<URL_APIM>/?redirect_uri=http://<URL_APIM>" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:13:59:28 +0000] "GET /management/apis/?top=true HTTP/1.1" 200 3 "http://<URL_APIM>/?redirect_uri=http://<URL_APIM>" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 8
10.13.5.165 - - [23/nov./2018:13:59:39 +0000] "OPTIONS /management/auth/oauth2 HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:13:59:39 +0000] "POST /management/auth/oauth2 HTTP/1.1" 404 61 "http://<URL_APIM>/?redirect_uri=http://<URL_APIM>" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:08:27 +0000] "GET /management/portal HTTP/1.1" 200 1921 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 11
10.13.5.165 - - [23/nov./2018:16:08:27 +0000] "OPTIONS /management/user/ HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:08:28 +0000] "GET /management/user/ HTTP/1.1" 401 0 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:08:28 +0000] "OPTIONS /management/portal/pages/?homepage=false HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:08:28 +0000] "GET /management/portal/pages/?homepage=false HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 9
10.13.5.165 - - [23/nov./2018:16:08:28 +0000] "OPTIONS /management/apis/?top=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:08:28 +0000] "OPTIONS /management/portal/pages/?homepage=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:08:28 +0000] "GET /management/portal/pages/?homepage=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:08:28 +0000] "GET /management/apis/?top=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 13
10.13.5.165 - - [23/nov./2018:16:08:33 +0000] "GET /management/portal HTTP/1.1" 200 1921 "http://<URL_APIM>/?code=7878896b-21d5-4f68-b889-6b21d59f68ab" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:08:33 +0000] "GET /management/user/ HTTP/1.1" 401 0 "http://<URL_APIM>/?code=7878896b-21d5-4f68-b889-6b21d59f68ab" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:08:34 +0000] "GET /management/portal/pages/?homepage=false HTTP/1.1" 200 3 "http://<URL_APIM>/?code=7878896b-21d5-4f68-b889-6b21d59f68ab" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:08:34 +0000] "OPTIONS /management/auth/oauth2 HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:08:34 +0000] "POST /management/auth/oauth2 HTTP/1.1" 404 61 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "GET /management/portal HTTP/1.1" 200 1921 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 4
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "OPTIONS /management/user/ HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "GET /management/user/ HTTP/1.1" 401 0 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "OPTIONS /management/portal/pages/?homepage=false HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "GET /management/portal/pages/?homepage=false HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "OPTIONS /management/apis/?top=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "OPTIONS /management/portal/pages/?homepage=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "GET /management/portal/pages/?homepage=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:15:54 +0000] "GET /management/apis/?top=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "OPTIONS /management/user/login HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "POST /management/user/login HTTP/1.1" 200 526 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 124
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "GET /management/user/ HTTP/1.1" 200 1374 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "OPTIONS /management/user/tasks HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "GET /management/portal/pages/?homepage=false HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "OPTIONS /management/user/notifications HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "GET /management/user/avatar?92668751 HTTP/1.1" 200 3097 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "GET /management/portal/pages/?homepage=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 9
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:15:58 +0000] "GET /management/apis/?top=true HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 7
10.13.5.165 - - [23/nov./2018:16:16:08 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:16:08 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 7
10.13.5.165 - - [23/nov./2018:16:16:18 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:16:28 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:16:38 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:16:48 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:16:56 +0000] "OPTIONS /management/apis/ HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:16:56 +0000] "GET /management/apis/ HTTP/1.1" 200 1812 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 7
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "OPTIONS /management/apis/64366e76-cc78-464c-b66e-76cc78d64c3b/state HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/state HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "OPTIONS /management/apis/8ac81c32-e1b8-4bea-881c-32e1b81bea3a/state HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "GET /management/apis/64366e76-cc78-464c-b66e-76cc78d64c3b/picture HTTP/1.1" 200 8029 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 58
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/picture HTTP/1.1" 304 0 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 60
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "GET /management/apis/8ac81c32-e1b8-4bea-881c-32e1b81bea3a/picture HTTP/1.1" 200 8029 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 63
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/state HTTP/1.1" 200 83 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 97
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "GET /management/apis/64366e76-cc78-464c-b66e-76cc78d64c3b/state HTTP/1.1" 200 83 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 97
10.13.5.165 - - [23/nov./2018:16:16:57 +0000] "GET /management/apis/8ac81c32-e1b8-4bea-881c-32e1b81bea3a/state HTTP/1.1" 200 83 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 95
10.13.5.165 - - [23/nov./2018:16:16:58 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:16:58 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 8
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=api&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=application&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=api&query=status:[500%20TO%20599]&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=api&order=-avg:response-time&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=api&order=-avg:proxy-latency&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/analytics?type=date_histo&field=api&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "OPTIONS /management/platform/events?type=START_API,STOP_API,PUBLISH_API,UNPUBLISH_API&api_ids=&from=1542903420160&to=1542989820160&page=0&size=10 HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/analytics?type=group_by&field=application&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 149 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 261
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/analytics?type=group_by&field=api&query=status:[500%20TO%20599]&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 261
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/analytics?type=group_by&field=api&order=-avg:proxy-latency&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 377 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 273
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/analytics?type=group_by&field=api&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 378 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 286
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/events?type=START_API,STOP_API,PUBLISH_API,UNPUBLISH_API&api_ids=&from=1542903420160&to=1542989820160&page=0&size=10 HTTP/1.1" 200 86 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 19
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 2624 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 313
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 46
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/analytics?type=group_by&field=api&order=-avg:response-time&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 377 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 322
10.13.5.165 - - [23/nov./2018:16:17:00 +0000] "GET /management/platform/analytics?type=date_histo&field=api&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 1322 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 51
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3 HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "OPTIONS /management/configuration/views/?all=true HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "OPTIONS /management/configuration/groups HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "OPTIONS /management/configuration/tags/ HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/members/permissions HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/state HTTP/1.1" 200 83 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 10
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "GET /management/configuration/groups HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 18
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/members/permissions HTTP/1.1" 200 675 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 21
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3 HTTP/1.1" 200 1619 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 25
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "GET /management/configuration/views/?all=true HTTP/1.1" 200 180 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 26
10.13.5.165 - - [23/nov./2018:16:17:03 +0000] "GET /management/configuration/tags/ HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 24
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 53
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 149 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 60
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 450 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 64
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 2376 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 62
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 180 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 69
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 1172 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 69
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 18
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 820 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 62
10.13.5.165 - - [23/nov./2018:16:17:04 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 1322 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 67
10.13.5.165 - - [23/nov./2018:16:17:08 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 7
10.13.5.165 - - [23/nov./2018:16:17:08 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=api&size=10000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=api&query=(path:\%22/parametres/devise\%22)&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=application&size=10000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=api&order=-avg:response-time&size=10000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/platform/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=api&order=-avg:proxy-latency&size=10000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/platform/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/platform/analytics?type=date_histo&field=api&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/platform/analytics?type=group_by&field=api&query=(path:\%22/parametres/devise\%22)&size=10000&interval=600000&from=1542903420160&to=1542989820160& HTTP/1.1" 200 213 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 52
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/platform/analytics?type=group_by&field=api&size=10000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 213 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 59
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/platform/analytics?type=group_by&field=application&size=10000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 149 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 62
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/platform/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1166 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 57
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/platform/analytics?type=group_by&field=api&order=-avg:response-time&size=10000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 211 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 63
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/platform/analytics?type=group_by&field=api&order=-avg:proxy-latency&size=10000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 211 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 63
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/platform/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 46
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/platform/analytics?type=date_histo&field=api&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1320 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 43
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 149 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 49
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 47
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 180 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 60
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 449 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 60
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1320 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 41
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1166 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 45
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 815 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 61
10.13.5.165 - - [23/nov./2018:16:17:09 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 46
10.13.5.165 - - [23/nov./2018:16:17:18 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:17:18 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:17:28 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:17:28 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 9
10.13.5.165 - - [23/nov./2018:16:17:38 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:17:38 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:17:48 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:17:58 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:18:08 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:18:08 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/portal HTTP/1.1" 200 1921 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 4
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/members/permissions HTTP/1.1" 200 675 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/user/ HTTP/1.1" 200 1374 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/configuration/tags/ HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/configuration/groups HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/members/permissions HTTP/1.1" 200 675 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3 HTTP/1.1" 200 1619 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 12
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/state HTTP/1.1" 200 83 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 17
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/configuration/views/?all=true HTTP/1.1" 200 180 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 12
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/user/avatar?92668751 HTTP/1.1" 200 3097 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 4
10.13.5.165 - - [23/nov./2018:16:18:12 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 72
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1320 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 78
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 180 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 88
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1166 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 84
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 449 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 97
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 149 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 104
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 19
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 815 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 38
10.13.5.165 - - [23/nov./2018:16:18:13 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 146 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 20
10.13.5.165 - - [23/nov./2018:16:18:22 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 7
10.13.5.165 - - [23/nov./2018:16:18:22 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:18:32 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:18:32 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:18:42 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:18:42 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:18:52 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:19:02 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:19:12 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:19:22 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:19:22 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:19:25 +0000] "GET /management/portal HTTP/1.1" 200 1921 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/user/ HTTP/1.1" 200 1374 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 4
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/members/permissions HTTP/1.1" 200 675 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 4
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/configuration/tags/ HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3 HTTP/1.1" 200 1619 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/configuration/views/?all=true HTTP/1.1" 200 180 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/state HTTP/1.1" 200 83 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 10
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/configuration/groups HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/members/permissions HTTP/1.1" 200 675 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/user/avatar?92668751 HTTP/1.1" 200 3097 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 34
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 449 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 39
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 180 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 38
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1166 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 38
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 146 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 59
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 149 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 63
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1320 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 28
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 25
10.13.5.165 - - [23/nov./2018:16:19:26 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 815 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 46
10.13.5.165 - - [23/nov./2018:16:19:36 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:19:36 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:19:36 +0000] "OPTIONS /management/configuration/tenants/ HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:19:36 +0000] "GET /management/configuration/tenants/ HTTP/1.1" 200 3 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 11
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 151 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 40
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 182 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 34
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 452 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 55
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 41
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 2378 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 65
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 1176 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 60
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 23
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 824 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 48
10.13.5.165 - - [23/nov./2018:16:19:37 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903577380&to=1542989977380& HTTP/1.1" 200 1324 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 65
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 451 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 22
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 27
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 182 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 33
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 148 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 46
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 151 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 53
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 633 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 32
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 27
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 349 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 54
10.13.5.165 - - [23/nov./2018:16:19:42 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=10000&from=1542989682283&to=1542989982283& HTTP/1.1" 200 482 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 21
10.13.5.165 - - [23/nov./2018:16:19:46 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:19:46 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:19:56 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:19:56 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:20:06 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 7
10.13.5.165 - - [23/nov./2018:16:20:06 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:20:16 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:20:16 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:20:26 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:20:26 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 3
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 151 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 18
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 2370 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 26
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 1183 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 35
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 452 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 50
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 43
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 1037 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 49
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 182 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 57
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 18
10.13.5.165 - - [23/nov./2018:16:20:36 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=15000&from=1542988236452&to=1542990036452& HTTP/1.1" 200 758 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 34
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 1
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "OPTIONS /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 0
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 27
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 149 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 32
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 449 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 46
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 180 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 52
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1166 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 54
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1320 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 24
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 10
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 815 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 32
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=path&size=1000&interval=600000&from=1542903420160&to=1542989820160&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 146 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 58
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=status&ranges=100:199%3B200:299%3B300:399%3B400:499%3B500:599&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 451 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 38
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=application&size=20&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 151 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 41
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=plan&size=20&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 182 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 71
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&aggs=avg:response-time%3Bavg:api-response-time&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1179 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 55
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=tenant&size=20&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 34
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=group_by&field=mapped-path&size=1000&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 40 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 72
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=status&aggs=field:status&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 1031 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 87
10.13.5.165 - - [23/nov./2018:16:20:44 +0000] "GET /management/apis/a603ae6b-e336-40fe-83ae-6be33640fee3/analytics?type=date_histo&field=application&aggs=field:application&interval=15000&from=1542988236452&to=1542990036452&query=(path:\%22/parametres/devise\%22)& HTTP/1.1" 200 752 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 47
10.13.5.165 - - [23/nov./2018:16:20:46 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:20:46 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:20:56 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 5
10.13.5.165 - - [23/nov./2018:16:20:56 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
10.13.5.165 - - [23/nov./2018:16:21:06 +0000] "GET /management/user/tasks HTTP/1.1" 200 159 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 6
10.13.5.165 - - [23/nov./2018:16:21:06 +0000] "GET /management/user/notifications HTTP/1.1" 200 139 "http://<URL_APIM>/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36" 2
Thanks again for your help ;)
Hi @jcverazzi
Sorry to be late.
So, I really don't understand, I just had a try with no issue at all.
According to the access log, you have a 404 when hitting this URL:
10.13.5.165 - - [23/nov./2018:13:33:45 +0000] "POST /management/auth/oauth2 HTTP/1.1" 404 61
Are you sure that endpoint:
http://<AM_URL>:8092/my_domain/oauth/token
is reachable ?
Did you have a try using curl ?
Simple question:
Did you have a try with a domain name which does not contain an underscore _
?
Hi @brasseld, thanks for your answers.
Here is a little schema to explain our architecture:
Our URL and our security domain doesn't contain underscore. I replaced the URL in logs.
I tried:
curl -v -X GET http://<URL_AM>:8093/management/domains/
And get:
> GET /management/domains HTTP/1.1
> Host: <URL_AM>:8093
> User-Agent: curl/7.61.1
> Accept: */*
>
< HTTP/1.1 401 Authentication Failed: No JWT token found
< X-Content-Type-Options: nosniff
< X-XSS-Protection: 1; mode=block
< Pragma: no-cache
< X-Frame-Options: DENY
< Cache-Control: must-revalidate,no-cache,no-store
< Content-Type: text/html;charset=iso-8859-1
< Content-Length: 0
So I'm not authorized. Is it normal?
What is working is:
curl -X POST 'http://<URL_AM>:8092/<my_domain>/oauth/token?grant_type=client_credentials&scope=read&client_id=<client_id>&client_secret=<client_secret>'
Which responds:
{
"access_token" : "1d45ea69-bad3-44e4-85ea-69bad334e473",
"token_type" : "bearer",
"expires_in" : 7199,
"scope" : "read"
}
Hi @jcverazzi
So I'm not authorized. Is it normal?
Yes AM Management API is secured with an Authorization Bearer (JWT) scheme.
So from what I see, your AM stack is up.
Is your AM gateway reachable from the APIM Management API ?
Hi @tcompiegne
Yes it is.
I obtained { "access_token" : "92fef670-35d2-43d6-bef6-7035d2d3d662", "token_type" : "bearer", "expires_in" : 7199, "scope" : "read" }
@jcverazzi
May I ask you to have a try with Gravitee.io APIM 1.21 when it will be released ?
Because I don't understand how you can get a 404 in that case.... it is something we are doing all the days, so no reason it doesn't work for you !
Hi,
Do you have an approximate ETA?
Thanks
Yes
Gravitee.io APIM 1.21 is released today Gravitee.io AM 2.1 has been released the last night
Guess I can wait one day :) I'll keep you updated.
I upraded APIM to 1.21.0 (not AM for now). I saw that now providers are configured on the portal. So i tried to configured mine. But I can't find how to configure it and found no doc on it.
What should I put in discovery endpoint? And in server URL?
For now I have an error on screen when logging in: Session expired, redirecting to home...
In console :
http://
I'll try to update AM and see what it changes.
Here is an example for AM:
If you think it would be better to organize a meeting / hangout / teamviewer / whatever you want, feel free to contact me at david(at)graviteesource.com
A little update here. I installed the latest version of gravitee api management (1.21.0) and gravitee access management (2.1.0). As advised by @brasseld (thanks again), I tested it with inline provider. It worked. So I guess my AD configuration was not OK.
Here's my final config:
Now everything works!
Nice play @jcverazzi , the mapping sub <-> sAMAccountName
was the trick.
👍
Not sure cause I had it the whole time. I think it's when I removed "User search base" that it worked. But I can't be 100% sure.
Also, I downgraded mongodb from 4.X to 3.6 in APIM.
We configured a domain on AM, with an LDAP (AD) provider. We successfully get a token for this domain via API. When using APIM portal, we click on "sign in with Gravitee.io AM" and sign in with no error. But then, there's an error message "HTTP 404 not found" on the portal login screen. In chrome console, I can see that there's a 404 error on http://:8083/management/auth/oauth2 with the following payload :
clientId: "gravitee"
code: "bbabaa4c-6aca-4cd2-abaa-4c6aca9cd25d"
redirectUri: "http://"
Expected Behavior
When signing in, be redirected to dashboards.
Current Behavior
No redirection to dashboards, and "HTTP 404 not found" error.
Possible Solution
Steps to Reproduce (for bugs)
Context
Your Environment
Client :
Server :