1
#pragma once
2

            
3
#include "envoy/formatter/http_formatter_context.h"
4
#include "envoy/formatter/substitution_formatter.h"
5

            
6
namespace Envoy {
7
namespace Formatter {
8

            
9
/**
10
 * Util class for HTTP access log format.
11
 */
12
class HttpSubstitutionFormatUtils {
13
public:
14
  static absl::StatusOr<FormatterPtr> defaultSubstitutionFormatter();
15
};
16

            
17
} // namespace Formatter
18
} // namespace Envoy