const TypeSingle, TypeMulti 1const ( 2 // TypeSingle indicates an ingester that can only ingest a single within a given period or no period. 3 TypeSingle Type = iota 4 // TypeMulti indicates an ingester that can ingest multiple within a given period or no period 5 TypeMulti 6) Copy source