Github user ottobackwards commented on a diff in the pull request:

    https://github.com/apache/metron/pull/711#discussion_r135794224
  
    --- Diff: 
metron-interface/metron-rest/src/main/java/org/apache/metron/rest/service/impl/AlertServiceImpl.java
 ---
    @@ -0,0 +1,57 @@
    +/**
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements.  See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership.  The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + * with the License.  You may obtain a copy of the License at
    + *
    + *     http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +package org.apache.metron.rest.service.impl;
    +
    +import com.fasterxml.jackson.core.JsonProcessingException;
    +import java.util.Map;
    +import org.apache.metron.common.utils.JSONUtils;
    +import org.apache.metron.rest.MetronRestConstants;
    +import org.apache.metron.rest.RestException;
    +import org.apache.metron.rest.service.AlertService;
    +import org.apache.metron.rest.service.KafkaService;
    +import org.springframework.beans.factory.annotation.Autowired;
    +import org.springframework.core.env.Environment;
    +import org.springframework.stereotype.Service;
    +
    +/**
    + * The default service layer implementation of {@link AlertService}.
    + *
    + * @see AlertService
    + */
    +@Service
    +public class AlertServiceImpl implements AlertService {
    +
    +  private Environment environment;
    +  private final KafkaService kafkaService;
    +
    +  @Autowired
    +  public AlertServiceImpl(final KafkaService kafkaService,
    +                          final Environment environment) {
    +    this.kafkaService = kafkaService;
    +    this.environment = environment;
    +  }
    +
    --- End diff --
    
    What I was thinking about is the assumption that the client will have the 
'full alert'.
    If the client requests alerts based on queries, and specifies the fields 
for return as a subset of the complete fields, then you are making the 
assumption that the subset is what will be required for escalation.  These are 
different use cases.  It is more likely that what will be required is:
    
    - Query from any point to service returned sum subset of fields for alert A.
    - User decides to escalate, and has some option to add new 
fields/data/annotations to alerts  ( best would we to have some 'additional 
field list + description' per escalation target that we can load into the ui ) 
to alert.
    - User may add same fields/annotations to multiple alerts ( escalate all in 
query )
    - Escalation takes annotations and alert id's, merges the annotations with 
the full alert (or from a query that returns the fields required by the 
target?) and sends them


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to